java怎么从一个文件读取字符串,再存到一个字符串数组里

2024-11-06 21:43:28
推荐回答(5个)
回答1:

首先,可以直接写入string的,这段程序的这种写法很无聊,让你误解了。
如: out.write(p_send_text);

其次,如果想写入一行并且换行的话,那么得包装一个printwriter,如:
PrintWriter out = new PrintWriter(FileWriter(file, true));
out.println(p_send_text);

在Java里,
char表示一个字符,它可以直接转换为int, byte, long.(ascii/unicode码)
String表示一串字符,它可以通过某些方法转换成一个数组,如char[], byte[],也可以用其他方法取出其中某个特定位置的字符,如charAt();

与C里面不同,在Java中,通常String用的比较多,char[]基本不用的。

回答2:

首先,可以直接写入string的,这段程序的这种写法很无聊,让你误解了。
如: out.write(p_send_text);

其次,如果想写入一行并且换行的话,那么得包装一个printwriter,如:
PrintWriter out = new PrintWriter(FileWriter(file, true));
out.println(p_send_text);

在Java里,
char表示一个字符,它可以直接转换为int, byte, long.(ascii/unicode码)
String表示一串字符,它可以通过某些方法转换成一个数组,如char[], byte[],也可以用其他方法取出其中某个特定位置的字符,如charAt();

与C里面不同,在Java中,通常String用的比较多,char[]基本不用的。

回答3:


import java.io.IOException;
import java.nio.charset.StandardCharsets;
import java.nio.file.Path;
import java.nio.file.Paths;
import java.util.Collections;
import java.util.List;
public class NioReadLines {
public static void main() {
new NioReadLines();
}
public NioReadLines() {
String filePath = "C:\\test.txt";
String[] arrLines = readFileAllLines(Paths.get(filePath));
for (String line : arrLines) {
System.out.println(line + "\n");
}
}
public String[] readFileAllLines(Path path) {
List lineList = Collections.emptyList();
try {
lineList = java.nio.file.Files.readAllLines(path, StandardCharsets.UTF_8);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return lineList.toArray(new String[0]);
}
}

回答4:

public static void main(String[] args) {
List strs = new ArrayList();
String path = "";
BufferedReader br = null;
String temp = null;
try {
br = new BufferedReader(new FileReader(path));
while ((temp = br.readLine()) != null) {
strs.add(temp);
}
} catch (FileNotFoundException e) {
System.out.println("指定的文件不存在");
} catch (IOException e) {
e.printStackTrace();
} finally {
try {
if(br!=null) {
br.close();
br = null;
}
} catch (IOException e) {
e.printStackTrace();
}
}
}

回答5:

找本java的基础教材,IO那块,一般都有例子