1 Entesar Khaled نشر 9 مايو 2019 أرسل تقرير نشر 9 مايو 2019 أهلا بك، هنا مثال لطباعة قيم Ascii في ملف import java.io.*; import java.nio.charset.*; public class Test { private static Charset UTF8 = Charset.forName("UTF-8"); public static void main(String args[]) throws IOException { writeFile("./test.txt"); readFile("./test.txt"); } public static void writeFile(String path) throws IOException { Writer writer = new OutputStreamWriter(new FileOutputStream(path), UTF8); try { writer.write((char) 147); } finally { writer.close(); } } public static void readFile(String path) throws IOException { Reader reader = new InputStreamReader(new FileInputStream(path), UTF8); try { int c = reader.read(); System.out.println(c); } finally { reader.close(); } } } اقتباس
السؤال
Feras Awwad
ومثال ع Ascii تعاملها مع الملف
1 جواب على هذا السؤال
Recommended Posts
انضم إلى النقاش
يمكنك أن تنشر الآن وتسجل لاحقًا. إذا كان لديك حساب، فسجل الدخول الآن لتنشر باسم حسابك.