निम्नलिखित (उदाहरण) रनिंग कोडजावा InputStream एन्कोडिंग/चारसेट
import java.io.*;
public class test {
public static void main(String[] args) throws Exception {
byte[] buf = {-27};
InputStream is = new ByteArrayInputStream(buf);
BufferedReader r = new BufferedReader(
new InputStreamReader(is, "ISO-8859-1"));
String s = r.readLine();
System.out.println("test.java:9 [byte] (char)" + (char)s.getBytes()[0] +
" (int)" + (int)s.getBytes()[0]);
System.out.println("test.java:10 [char] (char)" + (char)s.charAt(0) +
" (int)" + (int)s.charAt(0));
System.out.println("test.java:11 string below");
System.out.println(s);
System.out.println("test.java:13 string above");
}
}
मुझे इस उत्पादन
test.java:9 [byte] (char)? (int)63 test.java:10 [char] (char)? (int)229 test.java:11 string below ? test.java:13 string above
मैं कैसे लाइन -9 में सही बाइट मूल्य (-27) को बनाए रखने है देता है प्रिंट आउट? और इसके परिणामस्वरूप System.out.println(s)
कमांड (å) के अपेक्षित आउटपुट प्राप्त करें।
s.getBytes ("आईएसओ -885 9 -1") ने चाल की, धन्यवाद। मैं केवल उस डेटा को ट्रैक करने के लिए इसका उपयोग कर रहा था जहां फ़ाइल को पढ़ने के लिए फ़ाइल को पढ़ने से पथ में बदल दिया गया था। – Tobbe
@Tobbe: खुशी है कि यह मदद की। यह बेहतर होगा कि भविष्य में इसे पाठ में परिवर्तित न करें। जब तक यह वास्तव में * आईएसओ -885 9 -1 एन्कोडेड टेक्स्ट फ़ाइल नहीं है, बेशक। –