该程序写入2个文件。
在右侧文件中,字符串是“IL RITROVO AL 1°PIANO”
在错误的文件中,字符串是“IL RITROVO AL 1NUL PIANO”
在第二种情况下,“°”字符有错误的说法;在写这个案子之前我该如何检测这个案子?
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStreamWriter;
public class WrongWriter {
static File wrongFile = new File("C:/Users/utente/Desktop/wrongFile.txt");
static File rightFile = new File("C:/Users/utente/Desktop/rightFile.txt");
public static void main(String[] args) throws IOException {
byte[] wrongBytes = new byte[]{
73, 76, 32, 82, 73, 84, 82, 79, 86, 79, 32, 65, 76, 32, 49, 0, 32, 80, 73, 65, 78, 79, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32
};
write(wrongFile, wrongBytes) ;
byte[] rightBytes = "IL RITROVO AL 1° PIANO".getBytes();
write(rightFile, rightBytes) ;
}
static void write(File file, byte[] bytes) throws IOException{
OutputStreamWriter stream = null; //10227
stream = new OutputStreamWriter( new FileOutputStream( file ) , "ISO-8859-15");
stream.write( new String( bytes ) );
stream.flush();
stream.close();
}
}
答案 0 :(得分:0)
String/char/Writer/Reader
是java中的Unicode文本。 (这使java在其他语言中独一无二。)Java文本总是可以包含任何混合的脚本。
byte[]/InputStream/OutputStream
是Java中的二进制数据。要被解释为文本,必须给它们编码。
所以你可以这样做:
OutputStreamWriter stream = null; //10227
stream = new OutputStreamWriter( new FileOutputStream(file), "ISO-8859-15");
stream.print("IL RITROVO AL 1° PIANO");
stream.close();
类OuputStreamWriter将此桥接起来并将Unicode文本写入具有该编码的字节中。
一般情况下,转化次数为:
bytes[] inISO15 = "IL RITROVO AL 1° PIANO".getBytes("ISO-8859-15");
String s = new String(inISO15, "ISO-8859-15");
您在写入字节时采用了OutputStream功能,绕过了转换。这应该是:
stream.write(inISO5015);
但最好不要使用Writer,但可能会立即使用FileOutputStream或BufferedOutputStream。
答案 1 :(得分:0)
谢谢,但这是我想要的,但我无法使用CharsetDecoder ....
package dummy;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStreamWriter;
import java.io.UnsupportedEncodingException;
public class WrongWriter {
static File wrongFile = new File("C:/Users/utente/Desktop/wrongFile.txt");
static File rightFile = new File("C:/Users/utente/Desktop/rightFile.txt");
public static void main(String[] args) throws IOException {
byte[] wrongBytes = new byte[]{
73, 76, 32, 82, 73, 84, 82, 79, 86, 79, 32, 65, 76, 32, 49, 0, 32, 80, 73, 65, 78, 79, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32
};
if (CharacterChecker.isISO_8859_1(wrongBytes)) {
write(wrongFile, wrongBytes) ;
} else{
System.out.println("Bad input");
}
byte[] rightBytes = "IL RITROVO AL 1° PIANO".getBytes("ISO-8859-15");
write(rightFile, rightBytes) ;
}
static void write(File file, byte[] bytes) throws IOException{
OutputStreamWriter stream = null; //10227
stream = new OutputStreamWriter( new FileOutputStream( file ) , "ISO-8859-15");
stream.write( new String( bytes, "ISO-8859-15" ) );
stream.flush();
stream.close();
}
}
class CharacterChecker {
static public boolean isISO_8859_1(byte[] bytes) throws UnsupportedEncodingException{
for(int i=0;i< bytes.length;i++)
{
if(
( bytes[i]<32 && bytes[i] >=0)
|| (bytes[i]<-65 && bytes[i]>-69)
|| bytes[i]==-72
|| bytes[i]==-76
|| bytes[i]==-88
|| bytes[i]==-90
|| bytes[i]==-92
) {
return false;
}
}
return true;
}
static public boolean isISO_8859_1(String s) throws UnsupportedEncodingException{
byte[] bytes = s.getBytes("ISO-8859-1");
return isISO_8859_1(bytes);
}
static public String replaceNotISO_8859_1_characters(String s, char chracter) throws UnsupportedEncodingException{
String cString = Character.toString(chracter);
byte sobs = cString.getBytes("ISO-8859-1")[0];
byte[] bytes = s.getBytes("ISO-8859-1");
for(int i=0;i< bytes.length;i++)
{
if(
( bytes[i]<32 && bytes[i] >=0)
|| (bytes[i]<-65 && bytes[i]>-69)
|| bytes[i]==-72
|| bytes[i]==-76
|| bytes[i]==-88
|| bytes[i]==-90
|| bytes[i]==-92
) {
bytes[i] = sobs;
}
}
return new String(bytes,"ISO-8859-1");
}
}