Ⅰ java 文件一个一个字节读取(但内容有中文)
这是题目吗?一个汉字为两个byte,你一个个读出来转码是不行的。应该全部读出来统一转码,拿到数据之后想怎么输出就怎么输出了。下面是个例子,不太确定对不对,不过能给你一个参考。string str = "";while((n=bu.read(a))!=-1){ str += new String(a,o,n)}return new String(str.getBytes("UTF-8"),"UTF-8");第一个"UTF-8",是读取的文件的编码方式,第二个是要转成的编码方式。
Ⅱ java读txt方法
Java读取txt文件和写入txt文件写Java程序时经常碰到要读如txt或写入txt文件的情况,但是由于要定义好多变量,经常记不住,每次都要查
Ⅲ java分别以字节流和字符流的两种方式读取文件内容
importjava.io.BufferedReader;
importjava.io.File;
importjava.io.FileInputStream;
importjava.io.IOException;
importjava.io.InputStreamReader;
importjava.io.PrintWriter;
publicclassTest10{
/**
*复制当前的源程序到项目的根目录
*@throwsIOException
*/
publicstaticvoidmain(String[]args)throwsIOException{
/*
*1:读取原文件
*2:项目标文件中写
*3:使用缓冲流按行读写
*/
FileInputStreamfis=newFileInputStream("src"+File.separator+"day01"+File.separator+"Test1.java");
//转化为字符输出流
InputStreamReaderisr=newInputStreamReader(fis);
//按行为单位读取字符串
BufferedReaderbr=newBufferedReader(isr);
//
PrintWriterpw=newPrintWriter("Test1.java");
Stringline=null;
while((line=br.readLine())!=null){
pw.println(line);
}
pw.close();
br.close();
}
}
Ⅳ JAVA!文件操作中怎样按字节读取
import java.io.FileReader;import java.io.BufferedReader;import java.io.IOException;public class BufferedReaderTest{ public static void main(String[] args) { try { /**创建一个FileReader对象*/ FileReader fr=new FileReader("mytest.txt"); /**创建一个BufferedReader 对象*/ BufferedReader br=new BufferedReader(fr); /**读取一行数据*/ String line=br.readLine(); while(line!=null){ System.out.println(line); line=br.readLine(); } /**流的关闭*/ br.close(); fr.close(); }catch(IOException e){ System.out.println("文件不存在!"); } }}
Ⅳ java中怎样按字节读取文件并复制到另一个文件夹
这里以字节流,FileOutputStream为例。代码例子如下:
importjava.io.File;/***把一个文件夹中的文件复制到一个指定的文件夹*@authoryoung**/importjava.io.FileInputStream;importjava.io.FileNotFoundException;importjava.io.FileOutputStream;importjava.io.IOException;publicclassCopyFile{publicstaticvoidmain(String[]args){/*指定源exe文件的存放路径*/Stringstr="f:/jdk-1_5_0_06-windows-i586-p.exe";/*指定复制后的exe的目标路径*/Stringstrs="e:/.exe";/*创建输入和输出流*/FileInputStreamfis=null;FileOutputStreamfos=null;try{/*将io流和文件关联*/fis=newFileInputStream(str);fos=newFileOutputStream(strs);byte[]buf=newbyte[1024*1024];intlen;while((len=fis.read(buf))!=-1){fos.write(buf,0,len);}}catch(FileNotFoundExceptione){//TODOAuto-generatedcatchblocke.printStackTrace();}catch(IOExceptione){//TODOAuto-generatedcatchblocke.printStackTrace();}finally{try{fis.close();fos.close();}catch(IOExceptione){//TODOAuto-generatedcatchblocke.printStackTrace();}}}}
Ⅵ JAVA按照字节度文件咋读
package com.zhh.test;import java.io.File;import java.io.FileInputStream;import java.io.FileOutputStream;import java.io.FileWriter;import java.io.PrintWriter;public class TestFile { public static void main(String[] args){ File fa = new File("a.txt"); File fb = new File("b.txt"); byte[] ch = new byte[1024]; try{ FileWriter fw = new FileWriter(fa); PrintWriter pw = new PrintWriter(fw); pw.println(" we are all good boy!"); pw.println(" i love a girl!"); fw.close(); pw.close(); FileInputStream fis = new FileInputStream(fa); FileOutputStream fos =new FileOutputStream(fb); while( fis.read(ch,0,1024) != -1){ fos.write(ch, 0, 1024); } fis.close(); fos.close(); }catch(Exception e){ e.printStackTrace(); } }}
Ⅶ 用java如何读取一个文件的指定字节位置的数据
可以使用RandomAccessFile类。例如要从100字节开始输出工作目录下的.txt文件的类容。package konw.test1;import java.io.FileNotFoundException;import java.io.IOException;import java.io.RandomAccessFile;public class Test1{ public static void main(String[] args) { long pos = 100; try { String str = ""; RandomAccessFile randomAccessFile = new RandomAccessFile("data.txt", "rw"); randomAccessFile.seek(pos);//将文件流的位置移动到pos字节处 while( (str = randomAccessFile.readLine()) != null) { System.out.println(str); } randomAccessFile.close(); } catch (FileNotFoundException e) { e.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } }}
Ⅷ java 如何读写文件
public class ReadFromFile { /** * 以字节为单位读取文件,常用于读二进制文件,如图片、声音、影像等文件。 */ public static void readFileByBytes(String fileName) { File file = new File(fileName); InputStream in = null; try { System.out.println("以字节为单位读取文件内容,一次读一个字节:"); // 一次读一个字节 in = new FileInputStream(file); int tempbyte; while ((tempbyte = in.read()) != -1) { System.out.write(tempbyte); } in.close(); } catch (IOException e) { e.printStackTrace(); return; } try { System.out.println("以字节为单位读取文件内容,一次读多个字节:"); // 一次读多个字节 byte[] tempbytes = new byte[100]; int byteread = 0; in = new FileInputStream(fileName); ReadFromFile.showAvailableBytes(in); // 读入多个字节到字节数组中,byteread为一次读入的字节数 while ((byteread = in.read(tempbytes)) != -1) { System.out.write(tempbytes, 0, byteread); } } catch (Exception e1) { e1.printStackTrace(); } finally { if (in != null) { try { in.close(); } catch (IOException e1) { } } } } /** * 以字符为单位读取文件,常用于读文本,数字等类型的文件 */ public static void readFileByChars(String fileName) { File file = new File(fileName); Reader reader = null; try { System.out.println("以字符为单位读取文件内容,一次读一个字节:"); // 一次读一个字符 reader = new InputStreamReader(new FileInputStream(file)); int tempchar; while ((tempchar = reader.read()) != -1) { // 对于windows下,\r\n这两个字符在一起时,表示一个换行。 // 但如果这两个字符分开显示时,会换两次行。 // 因此,屏蔽掉\r,或者屏蔽\n。否则,将会多出很多空行。 if (((char) tempchar) != '\r') { System.out.print((char) tempchar); } } reader.close(); } catch (Exception e) { e.printStackTrace(); } try { System.out.println("以字符为单位读取文件内容,一次读多个字节:"); // 一次读多个字符 char[] tempchars = new char[30]; int charread = 0; reader = new InputStreamReader(new FileInputStream(fileName)); // 读入多个字符到字符数组中,charread为一次读取字符数 while ((charread = reader.read(tempchars)) != -1) { // 同样屏蔽掉\r不显示 if ((charread == tempchars.length) && (tempchars[tempchars.length – 1] != '\r')) { System.out.print(tempchars); } else { for (int i = 0; i < charread; i++) { if (tempchars[i] == '\r') { continue; } else { System.out.print(tempchars[i]); } } } } } catch (Exception e1) { e1.printStackTrace(); } finally { if (reader != null) { try { reader.close(); } catch (IOException e1) { } } } } /** * 以行为单位读取文件,常用于读面向行的格式化文件 */ public static void readFileByLines(String fileName) { File file = new File(fileName); BufferedReader reader = null; try { System.out.println("以行为单位读取文件内容,一次读一整行:"); reader = new BufferedReader(new FileReader(file)); String tempString = null; int line = 1; // 一次读入一行,直到读入null为文件结束 while ((tempString = reader.readLine()) != null) { // 显示行号 System.out.println("line " + line + ": " + tempString); line++; } reader.close(); } catch (IOException e) { e.printStackTrace(); } finally { if (reader != null) { try { reader.close(); } catch (IOException e1) { } } } } /** * 随机读取文件内容 */ public static void readFileByRandomAccess(String fileName) { RandomAccessFile randomFile = null; try { System.out.println("随机读取一段文件内容:"); // 打开一个随机访问文件流,按只读方式 randomFile = new RandomAccessFile(fileName, "r"); // 文件长度,字节数 long fileLength = randomFile.length(); // 读文件的起始位置 int beginIndex = (fileLength > 4) ? 4 : 0; // 将读文件的开始位置移到beginIndex位置。 randomFile.seek(beginIndex); byte[] bytes = new byte[10]; int byteread = 0; // 一次读10个字节,如果文件内容不足10个字节,则读剩下的字节。 // 将一次读取的字节数赋给byteread while ((byteread = randomFile.read(bytes)) != -1) { System.out.write(bytes, 0, byteread); } } catch (IOException e) { e.printStackTrace(); } finally { if (randomFile != null) { try { randomFile.close(); } catch (IOException e1) { } } } } /** * 显示输入流中还剩的字节数 */ private static void showAvailableBytes(InputStream in) { try { System.out.println("当前字节输入流中的字节数为:" + in.available()); } catch (IOException e) { e.printStackTrace(); } } public static void main(String[] args) { String fileName = "C:/temp/newTemp.txt"; ReadFromFile.readFileByBytes(fileName); ReadFromFile.readFileByChars(fileName); ReadFromFile.readFileByLines(fileName); ReadFromFile.readFileByRandomAccess(fileName); }}复制代码5、将内容追加到文件尾部public class AppendToFile { /** * A方法追加文件:使用RandomAccessFile */ public static void appendMethodA(String fileName, String content) { try { // 打开一个随机访问文件流,按读写方式 RandomAccessFile randomFile = new RandomAccessFile(fileName, "rw"); // 文件长度,字节数 long fileLength = randomFile.length(); //将写文件指针移到文件尾。 randomFile.seek(fileLength); randomFile.writeBytes(content); randomFile.close(); } catch (IOException e) { e.printStackTrace(); } } /** * B方法追加文件:使用FileWriter */ public static void appendMethodB(String fileName, String content) { try { //打开一个写文件器,构造函数中的第二个参数true表示以追加形式写文件 FileWriter writer = new FileWriter(fileName, true); writer.write(content); writer.close(); } catch (IOException e) { e.printStackTrace(); } } public static void main(String[] args) { String fileName = "C:/temp/newTemp.txt"; String content = "new append!"; //按方法A追加文件 AppendToFile.appendMethodA(fileName, content); AppendToFile.appendMethodA(fileName, "append end. \n"); //显示文件内容 ReadFromFile.readFileByLines(fileName); //按方法B追加文件 AppendToFile.appendMethodB(fileName, content); AppendToFile.appendMethodB(fileName, "append end. \n"); //显示文件内容 ReadFromFile.readFileByLines(fileName); }}
Ⅸ java文件如何读取
有几种方法读取吧File file = new File("d:\\a.txt");//把D盘目录下的a.txt读取出来,InputStream is = new FileInputStream(file);//把文件以字节流读回到内存中第二种是类加答载Demo1.class.getClassLoader().getResourceAsStream("a.txt");//Demo1为当前类名,a.txt在与Demo1.class在同一目录下。还有其它的就不说了