This Bugzilla instance is a read-only archive of historic NetBeans bug reports. To report a bug in NetBeans please follow the project's instructions for reporting issues.

Bug 16099 - I18N - debugger can not show variable on Watches when variable name is japanese
Summary: I18N - debugger can not show variable on Watches when variable name is japanese
Status: CLOSED FIXED
Alias: None
Product: debugger
Classification: Unclassified
Component: Java (show other bugs)
Version: -FFJ-
Hardware: PC Windows 3.1/NT
: P3 blocker (vote)
Assignee: issues@debugger
URL:
Keywords: I18N
Depends on:
Blocks:
 
Reported: 2001-10-02 06:56 UTC by katakai
Modified: 2001-11-29 13:26 UTC (History)
1 user (show)

See Also:
Issue Type: DEFECT
Exception Reporter:


Attachments
with JDK implementation, OK (76.42 KB, image/jpeg)
2001-10-02 07:00 UTC, katakai
Details
with JPDA, should display "test" (73.37 KB, image/jpeg)
2001-10-02 07:01 UTC, katakai
Details

Note You need to log in before you can comment on or make changes to this bug.
Description katakai 2001-10-02 06:56:33 UTC
When I set to JPDA for Default Debugging and add watch for
japanese variable name, debugger window shows nelow for the
variables on Watches tab.

 > "Name unknown: ????" <.

I'll attach the snapshot.

When I switch to JDK 1.1 debugger implement, this problem
does not happen. Also when class name is ascii, there is
no problem.

The example is very simple, which has only main() method,

public class test {
 public test {
 }
 public static main (String args[]) {
  String var="test";		// add var to watch
  String <japanese>="test";	// add <japanese> to watch
  System.out.println(var);	// set breakpoint here, and see
                                // "Watches" tab 
				// on debugger window
 }
}
Comment 1 katakai 2001-10-02 07:00:33 UTC
Created attachment 2784 [details]
with JDK implementation, OK
Comment 2 katakai 2001-10-02 07:01:45 UTC
Created attachment 2785 [details]
with JPDA, should display "test"
Comment 3 Daniel Prusa 2001-10-08 15:06:38 UTC
Can you attach a class file created by compiling a source containing 
a class named in Japanese to reproduce the problem, please ?
Comment 4 katakai 2001-10-09 09:15:01 UTC
I've attached the zip file as an attachment of bug 16098.

It seems that this problem is dup of bug 14252. If so,
please close as dup. If so, please mark this as dup.

Thank you.
Comment 5 Daniel Prusa 2001-11-14 10:03:08 UTC
Fixed in main trunk.
Comment 6 Keiichi Oono 2001-11-29 13:25:47 UTC
Verified on Release 3.3 Beta 5 (Build 200111201425)