ويب صور الأخبار مجموعات ترجمة إجابات Gmail المزيد »
المجموعات التي قمت بزيارتها مؤخرا | مساعدة | تسجيل الدخول
الصفحة الرئيسية لمجموعات Google
معلومات المجموعة
الأعضاء:‏ 66
اللغة:‏ العربية
فئات المجموعة:
الكمبيوتر > علوم الكمبيوتر
معلومات أكثر عن المجموعة »
wriring-to-and-reading-from-file-with-java    

writing to file

?

import java.io.*;

public class MyFirstFileWritingApp
{
?// Main method
?public static void main (String args[])
?{
??// Stream to write file
??FileOutputStream fout;??

??try
??{
????? // Open an output stream
????? fout = new FileOutputStream ("myfile.txt");

????? // Print a line of text
????? new PrintStream(fout).println ("hello world!");

????? // Close our output stream
????? fout.close();??
??}
??// Catches any error conditions
??catch (IOException e)
??{
???System.err.println ("Unable to write to file");
???System.exit(-1);
??}
?}?
}

?

reading from the file

?

import java.io.*;

public class MyFirstFileReadingApp
{
?// Main method
?public static void main (String args[])
?{
??// Stream to read file
??FileInputStream fin;??

??try
??{
????? // Open an input stream
????? fin = new FileInputStream ("myfile.txt");

????? // Read a line of text
????? System.out.println( new DataInputStream(fin).readLine() );

????? // Close our input stream
????? fin.close();??
??}
??// Catches any error conditions
??catch (IOException e)
??{
???System.err.println ("Unable to read from file");
???System.exit(-1);
??}
?}?
}

with my best wishes

elameer

الإصدار: 
آخر 3 الرسائل حول هذه الصفحة (5 إجمالاً) - عرض المناقشات بالكامل
11 مارس 2008 بواسطة S3foh
مشكور ياراجل ياعسل ونرجو لك التوفيق
9 مارس 2008 بواسطة abdalla
جزاك الله خير علي شعورك بزملائك وآسف لأني لم تخطر علي بالي هذه
الخاطرة
9 مارس 2008 بواسطة elameer
شكرا للنقد ولكن انا عملت كده تيسيرا لمن لا يملك خط DSL لان خط المودم
بطيء وبيحتاج وقت في التصفح والدونلود
2 المزيد من الرسائل »
إنشاء مجموعة - مجموعات Google - صفحة Google الرئيسية - شروط الخدمة - سياسة الخصوصية
©2009 Google