-
Bug
-
Resolution: Won't Fix
-
P4
-
None
-
1.1.6, 1.1.7, 1.2.0, 5.0
-
generic, x86
-
generic, windows_95, windows_nt, windows_2000
Name: tb29552 Date: 10/06/98
/*
System.out.print("äöü-ÄÖÜ");
will result in "äö?-?ÖÜ"
What's wrong. In ver1.1.6 it works properly.
*/
class Umlaute {
public static void outputMessage(){
System.out.println("java.version = " +
System.getProperty("java.version"));
System.out.println("Operating System Name = " +
System.getProperty("os.name"));
System.out.println("Operating system architecture = " +
System.getProperty("os.arch"));
System.out.println("Operating system version = " +
System.getProperty("os.version"));
}
public static void main(String[] args){
outputMessage();
System.out.println("");
System.out.println("äöü-ÄÖÜ");
System.out.println("");
}
}
(Review ID: 39895)
======================================================================
Name: krT82822 Date: 11/27/99
11/27/99 eval1127@eng -- note: bug # 4222718 should not have been duped to # 4179049, since the latter describes only a (minor) subset of what # 422718
describes. Am attaching this user's comments to # 4179049, since it's the only bug open. Hopefully this will help ensure that the contents of # 422718 are
fully addressed.
------------
Java(tm) Runtime Loader Version 1.1.7B
We pass some parameters on to our program via DOS-Commandline. If these
parameters contain characters like "?", "?", "?", "?" etc. they are all equally
converted to "?". This only occurs if the program is started with JRE, not if we
use the "java"-command.
Testcode:
import java.io.*;
public class BugTest extends Object
{
/** Konstruktor;
*/
public BugTest()
{
super();
}
public static void main(String args[])
{
BugTest app = new BugTest();
app.StartApp(args);
app.RunApp(args);
app.EndApp(args);
}
/**
*/
public void StartApp(java.lang.String args[]) {
}
public void EndApp(java.lang.String args[]) {
}
public void RunApp(String args[])
{
try {
string_Name = new String(args[0].getBytes("Cp850"), "Cp850");
//".getBytes("Cp850"), "Cp850")" doesn't make a difference!
} catch (java.io.UnsupportedEncodingException e) {
System.out.println("UnsupportedEncodingException");
}
System.out.println(string_Name);
try {
String fileName = "bugtest.txt";
File hlpFile = new File(fileName);
FileOutputStream stream_Output = new FileOutputStream(hlpFile);
BufferedWriter outputStream = new BufferedWriter(new
OutputStreamWriter(stream_Output));
outputStream.write(string_Name,0,string_Name.length());
/*
group.ads.util.io.file.File hlpFile = new
group.ads.util.io.file.File
(fileName, group.ads.util.io.file.File.WRITE);
hlpFile.writeLine(string_Name);
*/
outputStream.close();
} catch (Exception ex) {
System.out.println("Exception");
}
}
// add your data members here
java.lang.String string_Name="";
}
(Review ID: 98282)
======================================================================
Name: krT82822 Date: 12/07/99
java version "1.1.7B"
I'm working on a db migration. I convert the whole DB into a XML file, and try
to work with it. But prob that arises is that a '?' is not accepted, however i
use ISO-10646-UCS-2 (aka csUNICODE) charset in my xml.
here the error I get:
org.xml.sax.SAXParseException: Character conversion
error: "Missing byte-order mark" (line number may be too low).
at com.sun.xml.parser.InputEntity.fatal(InputEntity.java:974)
at com.sun.xml.parser.InputEntity.fillbuf(InputEntity.java:946)
at com.sun.xml.parser.InputEntity.peek(Compiled Code)
at com.sun.xml.parser.Parser.peek(Parser.java:2690)
at com.sun.xml.parser.Parser.maybeXmlDecl(Parser.java:980)
at com.sun.xml.parser.Parser.parseInternal(Compiled Code)
at com.sun.xml.parser.Parser.parse(Parser.java:283)
at Echo12.main(Echo12.java:68)
(Review ID: 98726)
======================================================================
/*
System.out.print("äöü-ÄÖÜ");
will result in "äö?-?ÖÜ"
What's wrong. In ver1.1.6 it works properly.
*/
class Umlaute {
public static void outputMessage(){
System.out.println("java.version = " +
System.getProperty("java.version"));
System.out.println("Operating System Name = " +
System.getProperty("os.name"));
System.out.println("Operating system architecture = " +
System.getProperty("os.arch"));
System.out.println("Operating system version = " +
System.getProperty("os.version"));
}
public static void main(String[] args){
outputMessage();
System.out.println("");
System.out.println("äöü-ÄÖÜ");
System.out.println("");
}
}
(Review ID: 39895)
======================================================================
Name: krT82822 Date: 11/27/99
11/27/99 eval1127@eng -- note: bug # 4222718 should not have been duped to # 4179049, since the latter describes only a (minor) subset of what # 422718
describes. Am attaching this user's comments to # 4179049, since it's the only bug open. Hopefully this will help ensure that the contents of # 422718 are
fully addressed.
------------
Java(tm) Runtime Loader Version 1.1.7B
We pass some parameters on to our program via DOS-Commandline. If these
parameters contain characters like "?", "?", "?", "?" etc. they are all equally
converted to "?". This only occurs if the program is started with JRE, not if we
use the "java"-command.
Testcode:
import java.io.*;
public class BugTest extends Object
{
/** Konstruktor;
*/
public BugTest()
{
super();
}
public static void main(String args[])
{
BugTest app = new BugTest();
app.StartApp(args);
app.RunApp(args);
app.EndApp(args);
}
/**
*/
public void StartApp(java.lang.String args[]) {
}
public void EndApp(java.lang.String args[]) {
}
public void RunApp(String args[])
{
try {
string_Name = new String(args[0].getBytes("Cp850"), "Cp850");
//".getBytes("Cp850"), "Cp850")" doesn't make a difference!
} catch (java.io.UnsupportedEncodingException e) {
System.out.println("UnsupportedEncodingException");
}
System.out.println(string_Name);
try {
String fileName = "bugtest.txt";
File hlpFile = new File(fileName);
FileOutputStream stream_Output = new FileOutputStream(hlpFile);
BufferedWriter outputStream = new BufferedWriter(new
OutputStreamWriter(stream_Output));
outputStream.write(string_Name,0,string_Name.length());
/*
group.ads.util.io.file.File hlpFile = new
group.ads.util.io.file.File
(fileName, group.ads.util.io.file.File.WRITE);
hlpFile.writeLine(string_Name);
*/
outputStream.close();
} catch (Exception ex) {
System.out.println("Exception");
}
}
// add your data members here
java.lang.String string_Name="";
}
(Review ID: 98282)
======================================================================
Name: krT82822 Date: 12/07/99
java version "1.1.7B"
I'm working on a db migration. I convert the whole DB into a XML file, and try
to work with it. But prob that arises is that a '?' is not accepted, however i
use ISO-10646-UCS-2 (aka csUNICODE) charset in my xml.
here the error I get:
org.xml.sax.SAXParseException: Character conversion
error: "Missing byte-order mark" (line number may be too low).
at com.sun.xml.parser.InputEntity.fatal(InputEntity.java:974)
at com.sun.xml.parser.InputEntity.fillbuf(InputEntity.java:946)
at com.sun.xml.parser.InputEntity.peek(Compiled Code)
at com.sun.xml.parser.Parser.peek(Parser.java:2690)
at com.sun.xml.parser.Parser.maybeXmlDecl(Parser.java:980)
at com.sun.xml.parser.Parser.parseInternal(Compiled Code)
at com.sun.xml.parser.Parser.parse(Parser.java:283)
at Echo12.main(Echo12.java:68)
(Review ID: 98726)
======================================================================
- duplicates
-
JDK-4222718 Codepage conversion not functioning properly
-
- Closed
-
- relates to
-
JDK-4425642 Regression: Bad conversion of bytes above 127....
-
- Closed
-