java怎么从一个文件读取字符串,再存到一个字符串数组里
展开全部
首先,可以直接写入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[]基本不用的。
如: 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[]基本不用的。
展开全部
首先,可以直接写入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[]基本不用的。
如: 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[]基本不用的。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
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<String> 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]);
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
public static void main(String[] args) {
List<String> strs = new ArrayList<String>();
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();
}
}
}
List<String> strs = new ArrayList<String>();
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();
}
}
}
本回答被提问者和网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
找本java的基础教材,IO那块,一般都有例子
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询