Dosya Yazma ve Okuma Örneği;
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
public static void main(String[] args) { //dosya yolu String dosyaYolu = "C://YazilimBilisim//test2.txt"; /*DOSYA OLUŞTURMA VE YAZMA*/ try { FileOutputStream fos = new FileOutputStream(dosyaYolu); OutputStreamWriter osw=new OutputStreamWriter(fos,"UTF-8"); osw.write("yazılım bilişim programlama 2"); osw.close(); } catch (UnsupportedEncodingException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch(FileNotFoundException ex) { System.out.println("Hata : " + ex); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } /*DOSYA OKUMA*/ try { File dosya = new File(dosyaYolu); BufferedReader oku = new BufferedReader( new InputStreamReader( new FileInputStream(dosya), "UTF8")); String str; while ((str = oku.readLine()) != null) { System.out.println(str); } oku.close(); } catch (UnsupportedEncodingException e) { System.out.println(e.getMessage()); } catch (IOException e) { System.out.println(e.getMessage()); } catch (Exception e) { System.out.println(e.getMessage()); } } |
Add Comment