×

java将数组写入文件

java将数组写入文件(java将数组写入文件夹)

admin admin 发表于2023-04-03 06:39:09 浏览80 评论0

抢沙发发表评论

本文目录一览:

java中如何把String数组写到文件里

这个方法比较多我常用的是:

String[] ary = {"abc", "123", "45"};

StringBuffer sb = new StringBuffer();

for(int i = 0; i ary.length; i++){

sb. append(ary[i]);

}

String newStr = sb.toString();

如果是char数组可以

char data[] = {'a', 'b', 'c'};

String str = new String(data);

或直接利用Array工具的方法。

要特别注意的是象Array的很多转换函数是把(字符数)组直接转换成

java怎样把一字符串数组写入.txt文件中,求代码,超级感谢

import java.io.File;

import java.io.OutputStream;

import java.io.FileOutputStream;

public class TestFile {

public static void main(String[] args) throws Exception{

//在d盘上创建一个名为testfile的文本文件

File f = new File("D:"+File.separator+"testfile.txt");

//用FileOutputSteam包装文件,并设置文件可追加

OutputStream out = new FileOutputStream(f,true);

//字符数组

String[] str = {"shanghai","beijing","guangdong","xiamen"};

for(int i =0; istr.length; i++){

out.write(str[i].getBytes()); //向文件中写入数据

out.write('\r'); // \r\n表示换行

out.write('\n');

}

out.close(); //关闭输出流

System.out.println("写入成功!");

}

}

Java中怎么把数组里面的数字存入TXT文件

参考代码

import java.io.FileWriter;

public class Demo {

//main方法抛出异常,当然了也可以try catch处理异常

public static void main(String[] args) throws Exception {

byte[] ary = { 2, 6, 8, 1, 5, 6, 8 };

//存入数据的文件目录是c:\\ary.txt

FileWriter fw = new FileWriter("c:\\ary.txt");

for (int i = 0; i  ary.length; i++) {

fw.write(ary[i]+",");//读取一个数字,就写入文件一次

}

fw.close();//输出流用完就关闭

}

}

效果图

java 怎么将数据写入TXT文件

定义一个输出文件,然后输出就可以了,具体见下面的代码

 import java.io.*;

 public class StreamDemo

 {

  public static void main(String args[])

  {

   File f = new File("c:\\temp.txt") ;

   OutputStream out = null ;

   try 

   {

    out = new FileOutputStream(f) ;

   } 

   catch (FileNotFoundException e) 

   {

    e.printStackTrace();

   }

   // 将字符串转成字节数组

   byte b[] = "Hello World!!!".getBytes() ;

   try 

   {

    // 将byte数组写入到文件之中

    out.write(b) ;

   } 

   catch (IOException e1) 

   {

    e1.printStackTrace();

   }

   try 

   {

    out.close() ;

   } 

   catch (IOException e2) 

   {

    e2.printStackTrace();

   }

  

   // 以下为读文件操作

   InputStream in = null ;

   try 

   {

    in = new FileInputStream(f) ;

   } 

   catch (FileNotFoundException e3) 

   {

    e3.printStackTrace();

   }

   // 开辟一个空间用于接收文件读进来的数据

   byte b1[] = new byte[1024] ;

   int i = 0 ;

   try 

   {

   // 将b1的引用传递到read()方法之中,同时此方法返回读入数据的个数

    i = in.read(b1) ;

   } 

   catch (IOException e4) 

   {

    e4.printStackTrace();

   }

   try 

   {

    in.close() ;

   } 

   catch (IOException e5) 

   {

    e5.printStackTrace();

   }

   //将byte数组转换为字符串输出

   System.out.println(new String(b1,0,i)) ;

  }

 }

java怎样把一字符串数组写入.txt文件中?

import java.io.File;\x0d\x0aimport java.io.OutputStream;\x0d\x0aimport java.io.FileOutputStream;\x0d\x0apublic class TestFile {\x0d\x0apublic static void main(String[] args) throws Exception{\x0d\x0a//在d盘上创建一个名为testfile的文本文件\x0d\x0aFile f = new File("D:"+File.separator+"testfile.txt");\x0d\x0a//用FileOutputSteam包装文件,并设置文件可追加\x0d\x0aOutputStream out = new FileOutputStream(f,true);\x0d\x0a//字符数组\x0d\x0aString[] str = {"shanghai","beijing","guangdong","xiamen"};\x0d\x0afor(int i =0; i-java将数组写入文件