ජාවා හි ගොනු කියවීමට හා ලිවීමට විවිධ ක්රම ඇති බව පෙනේ.
මට ගොනුවකින් ASCII දත්ත කියවීමට අවශ්යයි. විය හැකි ක්රම සහ ඒවායේ වෙනස්කම් මොනවාද?
ජාවා හි ගොනු කියවීමට හා ලිවීමට විවිධ ක්රම ඇති බව පෙනේ.
මට ගොනුවකින් ASCII දත්ත කියවීමට අවශ්යයි. විය හැකි ක්රම සහ ඒවායේ වෙනස්කම් මොනවාද?
Answers:
ASCII යනු TEXT ගොනුවක් බැවින් ඔබ Readers
කියවීම සඳහා භාවිතා කරනු ඇත. ජාවා ද්විමය ගොනුවකින් කියවීමට ද සහාය InputStreams
වේ. කියවන ලිපිගොනු විශාල නම් කියවීමේ කාර්ය සාධනය වැඩි දියුණු BufferedReader
කිරීම සඳහා FileReader
ඔබට ඉහළින් එකක් භාවිතා කිරීමට අවශ්ය වනු ඇත .
භාවිතා කරන ආකාරය පිළිබඳ මෙම ලිපිය හරහා යන්නReader
Thinking In Java නමින් හැඳින්වෙන මෙම අපූරු (එහෙත් නොමිලේ) පොත බාගත කර කියවීමට මම නිර්දේශ කරමි
ජාවා 7 හි :
new String(Files.readAllBytes(...))
(ලියකියවිලි) හෝ
Files.readAllLines(...)
ජාවා 8 හි :
Files.lines(..).forEach(...)
Files.lines(…).forEach(…)
රේඛා අනුපිළිවෙල ආරක්ෂා නොකරන නමුත් සමාන්තරව ක්රියාත්මක වේ ash ඩෑෂ්. ඇණවුම වැදගත් නම්, ඔබට භාවිතා කළ හැකිය Files.lines(…).forEachOrdered(…)
, එය ඇණවුම ආරක්ෂා කළ යුතුය (කෙසේ වෙතත් සත්යාපනය කර නැත).
Files.lines(...).forEach(...)
සමාන්තරව ක්රියාත්මක වන බව පවසන ලියකියවිලි වලින් ඔබට උපුටා දැක්විය හැකිද? මම හිතුවේ ඔබ පැහැදිලිවම ප්රවාහය සමාන්තරව භාවිතා කරන විට පමණක් මෙය සිදු වන Files.lines(...).parallel().forEach(...)
බවයි.
forEach
කිසිදු අනුපිළිවෙලක් සහතික නොකරන අතර හේතුව පහසු සමාන්තරකරණයයි. ඇණවුම සුරැකීමට නම් භාවිතා කරන්න forEachOrdered
.
කුඩා ගොනුවක් කියවීමට මගේ ප්රියතම ක්රමය වන්නේ බෆර්ඩ් රීඩර් සහ ස්ට්රිංබිල්ඩර් භාවිතා කිරීමයි. එය ඉතා සරල හා කාරණයකි (විශේෂයෙන් effective ලදායී නොවුවද බොහෝ අවස්ථාවන්ට එය හොඳය):
BufferedReader br = new BufferedReader(new FileReader("file.txt"));
try {
StringBuilder sb = new StringBuilder();
String line = br.readLine();
while (line != null) {
sb.append(line);
sb.append(System.lineSeparator());
line = br.readLine();
}
String everything = sb.toString();
} finally {
br.close();
}
සමහරු පෙන්වා දී ඇත්තේ ජාවා 7 න් පසු ඔබ උත්සාහ කළ හැකි සම්පත් (එනම් ස්වයංක්රීයව වසා දැමීමේ ) විශේෂාංග භාවිතා කළ යුතු බවයි :
try(BufferedReader br = new BufferedReader(new FileReader("file.txt"))) {
StringBuilder sb = new StringBuilder();
String line = br.readLine();
while (line != null) {
sb.append(line);
sb.append(System.lineSeparator());
line = br.readLine();
}
String everything = sb.toString();
}
මම මේ වගේ නූල් කියවන විට, සාමාන්යයෙන් මට අවශ්ය වන්නේ කෙසේ හෝ පේළියකට යම් ආකාරයකින් හැසිරවීමක් කිරීමටය, එබැවින් මම මෙම ක්රියාත්මක කිරීම සඳහා යන්නෙමි.
මට ඇත්ත වශයෙන්ම ගොනුවක් නූලකට කියවීමට අවශ්ය වුවද, මම සෑම විටම Apache භාවිතා කරමි නූලකට IOUtils.toString () පන්තිය සමඟ Commons IO . ඔබට මෙහි මූලාශ්රය දෙස බැලිය හැකිය:
http://www.docjar.com/html/api/org/apache/commons/io/IOUtils.java.html
FileInputStream inputStream = new FileInputStream("foo.txt");
try {
String everything = IOUtils.toString(inputStream);
} finally {
inputStream.close();
}
ජාවා 7 සමඟ ඊටත් වඩා සරලයි:
try(FileInputStream inputStream = new FileInputStream("foo.txt")) {
String everything = IOUtils.toString(inputStream);
// do something with everything string
}
code
අතර (රේඛාව! = ශූන්ය) {sb.append (පේළිය); line = br.readLine (); // රේඛාව අවසාන පේළිය නොවන විට පමණක් නව පේළියක් එක් කරන්න .. if (line! = Null) {sb.append ("\ n"); }}code
පහසුම ක්රමය වන්නේ Scanner
ජාවා සහ ෆයිල් රීඩර් වස්තුවෙහි පන්තිය භාවිතා කිරීමයි . සරල උදාහරණය:
Scanner in = new Scanner(new FileReader("filename.txt"));
Scanner
නූල්, අංක ආදියෙන් කියවීම සඳහා ක්රම කිහිපයක් ඇත ... ඔබට මේ පිළිබඳ වැඩි විස්තර ජාවා ප්රලේඛන පිටුවෙන් සොයා ගත හැකිය.
උදාහරණයක් ලෙස සම්පූර්ණ අන්තර්ගතය කියවීම String
:
StringBuilder sb = new StringBuilder();
while(in.hasNext()) {
sb.append(in.next());
}
in.close();
outString = sb.toString();
ඔබට නිශ්චිත කේතීකරණයක් අවශ්ය නම් ඔබට ඒ වෙනුවට මෙය භාවිතා කළ හැකිය FileReader
:
new InputStreamReader(new FileInputStream(fileUtf8), StandardCharsets.UTF_8)
BufferedReader
while ((line = br.readLine()) != null) { sb.append(line); }
කුමක්ද?
මෙන්න සරල විසඳුමක්:
String content;
content = new String(Files.readAllBytes(Paths.get("sample.txt")));
බාහිර පුස්තකාල භාවිතා නොකර එය කළ හැකි තවත් ක්රමයක් මෙන්න:
import java.io.File;
import java.io.FileReader;
import java.io.IOException;
public String readFile(String filename)
{
String content = null;
File file = new File(filename); // For example, foo.txt
FileReader reader = null;
try {
reader = new FileReader(file);
char[] chars = new char[(int) file.length()];
reader.read(chars);
content = new String(chars);
reader.close();
} catch (IOException e) {
e.printStackTrace();
} finally {
if(reader != null){
reader.close();
}
}
return content;
}
මට විවිධ ක්රම මිණුම් සලකුණු කිරීමට සිදු විය. මගේ සොයාගැනීම් ගැන මම අදහස් දක්වන්නෙමි, නමුත් කෙටියෙන් කිවහොත්, වේගවත්ම ක්රමය වන්නේ ෆයිල් ඉන්පුට්ස්ට්රීම් හරහා පැරණි පැරණි බෆර්ඩ් ඉන්පුට්ස්ට්රීම් භාවිතා කිරීමයි. බොහෝ ලිපිගොනු කියවිය යුතු නම්, නූල් තුනක් මඟින් සම්පූර්ණ ක්රියාත්මක කිරීමේ කාලය දළ වශයෙන් අඩක් දක්වා අඩු කරනු ඇත, නමුත් තවත් නූල් එකතු කිරීමෙන් එක් නූල් එකකට වඩා නූල් විස්සකින් සම්පූර්ණ කිරීමට තුන් ගුණයක් ගත වන තෙක් ක්රමානුකූලව කාර්ය සාධනය පිරිහී යනු ඇත.
උපකල්පනය නම් ඔබ ගොනුවක් කියවා එහි අන්තර්ගතය සමඟ අර්ථවත් යමක් කළ යුතු බවයි. මෙහි නිදසුන් වල දැක්වෙන්නේ ලොගයකින් රේඛා කියවීම සහ යම් සීමාවක් ඉක්මවා යන අගයන් අඩංගු ඒවා ගණන් කිරීමයි. එබැවින් මම සිතන්නේ එක්-ලයිනර් ජාවා 8 Files.lines(Paths.get("/path/to/file.txt")).map(line -> line.split(";"))
විකල්පයක් නොවන බවයි.
මම ජාවා 1.8, වින්ඩෝස් 7 සහ එස්එස්ඩී සහ එච්ඩීඩී ඩ්රයිව් දෙකෙහිම අත්හදා බැලුවෙමි.
මම වෙනස් ක්රියාත්මක කිරීම් හයක් ලිව්වා:
rawParse : FileInputStream හරහා BufferedInputStream භාවිතා කර බයිට් වලින් කියවන රේඛා කපන්න. මෙය වෙනත් ඕනෑම තනි නූල් ප්රවේශයක් අභිබවා ගිය නමුත් ASCII නොවන ලිපිගොනු සඳහා එය ඉතා අපහසු විය හැකිය.
lineReaderParse : FileReader හරහා බෆර්ඩ් රීඩරයක් භාවිතා කරන්න, පේළියෙන් රේඛාව කියවන්න, String.split () ඇමතීමෙන් රේඛා බෙදන්න. මෙය දළ වශයෙන් 20% ක් මන්දගාමී වේ.
lineReaderParseParallel : මෙය lineReaderParse හා සමාන වේ, නමුත් එය නූල් කිහිපයක් භාවිතා කරයි. සමස්තයක් ලෙස ගත් විට වේගවත්ම විකල්පය මෙයයි.
nioFilesParse : java.nio.files.Files.lines () භාවිතා කරන්න
nioAsyncParse : සම්පුර්ණ හසුරුවන්නෙකු සහ නූල් තටාකයක් සහිත අසමමුහුර්ත ෆයිල් චැනලයක් භාවිතා කරන්න.
nioMemoryMappedParse : මතක සිතියම් ගත ගොනුවක් භාවිතා කරන්න. මෙය සැබවින්ම නරක අදහසකි, වෙනත් ඕනෑම ක්රියාත්මක කිරීමකට වඩා අවම වශයෙන් තුන් ගුණයක් දිගු කාලයක් ක්රියාත්මක කිරීමේ කාලය ලබා දෙයි.
Quad-core i7 සහ SSD ධාවකය මත 4 MB බැගින් ලිපිගොනු 204 ක් කියවීමේ සාමාන්ය කාලය මෙයයි. තැටි හැඹිලි වළක්වා ගැනීම සඳහා ගොනු මැස්සන් මත ජනනය වේ.
rawParse 11.10 sec
lineReaderParse 13.86 sec
lineReaderParseParallel 6.00 sec
nioFilesParse 13.52 sec
nioAsyncParse 16.06 sec
nioMemoryMappedParse 37.68 sec
එස්එස්ඩී එකක් හෝ එච්ඩීඩී ඩ්රයිව් එකක් ධාවනය කිරීම අතර මා බලාපොරොත්තු වූවාට වඩා කුඩා වෙනසක් මට හමු විය. මෙයට හේතුව විය හැක්කේ ලිපිගොනු සකස් නොකළ HDD මත වන අතර ඒවා අනුපිළිවෙලින් කියවනු ලැබේ, එබැවින් භ්රමණය වන ධාවකය SSD ලෙස ක්රියා කළ හැකිය.
NioAsyncParse ක්රියාත්මක කිරීමේ අඩු ක්රියාකාරිත්වය ගැන මා පුදුමයට පත් විය. එක්කෝ මම වැරදි ආකාරයකින් යමක් ක්රියාවට නංවා හෝ NIO භාවිතා කරමින් බහු-නූල් ක්රියාත්මක කිරීම සහ සම්පුර්ණ හසුරුවන්නා java.io API සමඟ තනි නූල් ක්රියාත්මක කිරීමට වඩා සමාන (හෝ ඊටත් වඩා නරක) සිදු කරයි. තවද, සම්පුර්ණ හැන්ඩ්ලර් සමඟ ඇති අසමමුහුර්ත විග්රහය පැරණි ධාරාවන්හි සෘජුවම ක්රියාත්මක කිරීමට වඩා නිවැරදිව ක්රියාත්මක කිරීමට කේත රේඛා හා උපක්රමශීලී වේ.
දැන් ක්රියාත්මක කිරීම් හයෙන් පසුව ඒවා සියල්ලම අඩංගු පන්තියක් සහ පරාමිතිකකරණය කළ හැකි ප්රධාන () ක්රමයක් වන අතර එමඟින් ගොනු ගණන, ගොනු ප්රමාණය සහ සමගාමී උපාධිය සමඟ සෙල්ලම් කිරීමට ඉඩ ලබා දේ. ලිපිගොනු වල ප්රමාණය us ණ 20% අතර වෙනස් වන බව සලකන්න. මෙය සියලුම ලිපිගොනු එකම ප්රමාණයෙන් තිබීම නිසා කිසිදු බලපෑමක් වළක්වා ගැනීමයි.
rawParse
public void rawParse(final String targetDir, final int numberOfFiles) throws IOException, ParseException {
overrunCount = 0;
final int dl = (int) ';';
StringBuffer lineBuffer = new StringBuffer(1024);
for (int f=0; f<numberOfFiles; f++) {
File fl = new File(targetDir+filenamePreffix+String.valueOf(f)+".txt");
FileInputStream fin = new FileInputStream(fl);
BufferedInputStream bin = new BufferedInputStream(fin);
int character;
while((character=bin.read())!=-1) {
if (character==dl) {
// Here is where something is done with each line
doSomethingWithRawLine(lineBuffer.toString());
lineBuffer.setLength(0);
}
else {
lineBuffer.append((char) character);
}
}
bin.close();
fin.close();
}
}
public final void doSomethingWithRawLine(String line) throws ParseException {
// What to do for each line
int fieldNumber = 0;
final int len = line.length();
StringBuffer fieldBuffer = new StringBuffer(256);
for (int charPos=0; charPos<len; charPos++) {
char c = line.charAt(charPos);
if (c==DL0) {
String fieldValue = fieldBuffer.toString();
if (fieldValue.length()>0) {
switch (fieldNumber) {
case 0:
Date dt = fmt.parse(fieldValue);
fieldNumber++;
break;
case 1:
double d = Double.parseDouble(fieldValue);
fieldNumber++;
break;
case 2:
int t = Integer.parseInt(fieldValue);
fieldNumber++;
break;
case 3:
if (fieldValue.equals("overrun"))
overrunCount++;
break;
}
}
fieldBuffer.setLength(0);
}
else {
fieldBuffer.append(c);
}
}
}
lineReaderParse
public void lineReaderParse(final String targetDir, final int numberOfFiles) throws IOException, ParseException {
String line;
for (int f=0; f<numberOfFiles; f++) {
File fl = new File(targetDir+filenamePreffix+String.valueOf(f)+".txt");
FileReader frd = new FileReader(fl);
BufferedReader brd = new BufferedReader(frd);
while ((line=brd.readLine())!=null)
doSomethingWithLine(line);
brd.close();
frd.close();
}
}
public final void doSomethingWithLine(String line) throws ParseException {
// Example of what to do for each line
String[] fields = line.split(";");
Date dt = fmt.parse(fields[0]);
double d = Double.parseDouble(fields[1]);
int t = Integer.parseInt(fields[2]);
if (fields[3].equals("overrun"))
overrunCount++;
}
lineReaderParseParallel
public void lineReaderParseParallel(final String targetDir, final int numberOfFiles, final int degreeOfParalelism) throws IOException, ParseException, InterruptedException {
Thread[] pool = new Thread[degreeOfParalelism];
int batchSize = numberOfFiles / degreeOfParalelism;
for (int b=0; b<degreeOfParalelism; b++) {
pool[b] = new LineReaderParseThread(targetDir, b*batchSize, b*batchSize+b*batchSize);
pool[b].start();
}
for (int b=0; b<degreeOfParalelism; b++)
pool[b].join();
}
class LineReaderParseThread extends Thread {
private String targetDir;
private int fileFrom;
private int fileTo;
private DateFormat fmt = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
private int overrunCounter = 0;
public LineReaderParseThread(String targetDir, int fileFrom, int fileTo) {
this.targetDir = targetDir;
this.fileFrom = fileFrom;
this.fileTo = fileTo;
}
private void doSomethingWithTheLine(String line) throws ParseException {
String[] fields = line.split(DL);
Date dt = fmt.parse(fields[0]);
double d = Double.parseDouble(fields[1]);
int t = Integer.parseInt(fields[2]);
if (fields[3].equals("overrun"))
overrunCounter++;
}
@Override
public void run() {
String line;
for (int f=fileFrom; f<fileTo; f++) {
File fl = new File(targetDir+filenamePreffix+String.valueOf(f)+".txt");
try {
FileReader frd = new FileReader(fl);
BufferedReader brd = new BufferedReader(frd);
while ((line=brd.readLine())!=null) {
doSomethingWithTheLine(line);
}
brd.close();
frd.close();
} catch (IOException | ParseException ioe) { }
}
}
}
nioFilesParse
public void nioFilesParse(final String targetDir, final int numberOfFiles) throws IOException, ParseException {
for (int f=0; f<numberOfFiles; f++) {
Path ph = Paths.get(targetDir+filenamePreffix+String.valueOf(f)+".txt");
Consumer<String> action = new LineConsumer();
Stream<String> lines = Files.lines(ph);
lines.forEach(action);
lines.close();
}
}
class LineConsumer implements Consumer<String> {
@Override
public void accept(String line) {
// What to do for each line
String[] fields = line.split(DL);
if (fields.length>1) {
try {
Date dt = fmt.parse(fields[0]);
}
catch (ParseException e) {
}
double d = Double.parseDouble(fields[1]);
int t = Integer.parseInt(fields[2]);
if (fields[3].equals("overrun"))
overrunCount++;
}
}
}
nioAsyncParse
public void nioAsyncParse(final String targetDir, final int numberOfFiles, final int numberOfThreads, final int bufferSize) throws IOException, ParseException, InterruptedException {
ScheduledThreadPoolExecutor pool = new ScheduledThreadPoolExecutor(numberOfThreads);
ConcurrentLinkedQueue<ByteBuffer> byteBuffers = new ConcurrentLinkedQueue<ByteBuffer>();
for (int b=0; b<numberOfThreads; b++)
byteBuffers.add(ByteBuffer.allocate(bufferSize));
for (int f=0; f<numberOfFiles; f++) {
consumerThreads.acquire();
String fileName = targetDir+filenamePreffix+String.valueOf(f)+".txt";
AsynchronousFileChannel channel = AsynchronousFileChannel.open(Paths.get(fileName), EnumSet.of(StandardOpenOption.READ), pool);
BufferConsumer consumer = new BufferConsumer(byteBuffers, fileName, bufferSize);
channel.read(consumer.buffer(), 0l, channel, consumer);
}
consumerThreads.acquire(numberOfThreads);
}
class BufferConsumer implements CompletionHandler<Integer, AsynchronousFileChannel> {
private ConcurrentLinkedQueue<ByteBuffer> buffers;
private ByteBuffer bytes;
private String file;
private StringBuffer chars;
private int limit;
private long position;
private DateFormat frmt = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
public BufferConsumer(ConcurrentLinkedQueue<ByteBuffer> byteBuffers, String fileName, int bufferSize) {
buffers = byteBuffers;
bytes = buffers.poll();
if (bytes==null)
bytes = ByteBuffer.allocate(bufferSize);
file = fileName;
chars = new StringBuffer(bufferSize);
frmt = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
limit = bufferSize;
position = 0l;
}
public ByteBuffer buffer() {
return bytes;
}
@Override
public synchronized void completed(Integer result, AsynchronousFileChannel channel) {
if (result!=-1) {
bytes.flip();
final int len = bytes.limit();
int i = 0;
try {
for (i = 0; i < len; i++) {
byte by = bytes.get();
if (by=='\n') {
// ***
// The code used to process the line goes here
chars.setLength(0);
}
else {
chars.append((char) by);
}
}
}
catch (Exception x) {
System.out.println(
"Caught exception " + x.getClass().getName() + " " + x.getMessage() +
" i=" + String.valueOf(i) + ", limit=" + String.valueOf(len) +
", position="+String.valueOf(position));
}
if (len==limit) {
bytes.clear();
position += len;
channel.read(bytes, position, channel, this);
}
else {
try {
channel.close();
}
catch (IOException e) {
}
consumerThreads.release();
bytes.clear();
buffers.add(bytes);
}
}
else {
try {
channel.close();
}
catch (IOException e) {
}
consumerThreads.release();
bytes.clear();
buffers.add(bytes);
}
}
@Override
public void failed(Throwable e, AsynchronousFileChannel channel) {
}
};
සියළුම සිද්ධීන් සම්පූර්ණයෙන් ක්රියාත්මක කිරීම
https://github.com/sergiomt/javaiobenchmark/blob/master/FileReadBenchmark.java
වැඩ කරන සහ පරීක්ෂා කළ ක්රම තුන මෙන්න:
BufferedReader
package io;
import java.io.*;
public class ReadFromFile2 {
public static void main(String[] args)throws Exception {
File file = new File("C:\\Users\\pankaj\\Desktop\\test.java");
BufferedReader br = new BufferedReader(new FileReader(file));
String st;
while((st=br.readLine()) != null){
System.out.println(st);
}
}
}
Scanner
package io;
import java.io.File;
import java.util.Scanner;
public class ReadFromFileUsingScanner {
public static void main(String[] args) throws Exception {
File file = new File("C:\\Users\\pankaj\\Desktop\\test.java");
Scanner sc = new Scanner(file);
while(sc.hasNextLine()){
System.out.println(sc.nextLine());
}
}
}
FileReader
package io;
import java.io.*;
public class ReadingFromFile {
public static void main(String[] args) throws Exception {
FileReader fr = new FileReader("C:\\Users\\pankaj\\Desktop\\test.java");
int i;
while ((i=fr.read()) != -1){
System.out.print((char) i);
}
}
}
Scanner
පංතිය භාවිතයෙන් ලූපයක් නොමැතිව සම්පූර්ණ ගොනුව කියවන්නpackage io;
import java.io.File;
import java.io.FileNotFoundException;
import java.util.Scanner;
public class ReadingEntireFileWithoutLoop {
public static void main(String[] args) throws FileNotFoundException {
File file = new File("C:\\Users\\pankaj\\Desktop\\test.java");
Scanner sc = new Scanner(file);
sc.useDelimiter("\\Z");
System.out.println(sc.next());
}
}
java.nio.file.Files
? අපි දැන් යන භාවිතා කළ හැකිය readAllLines
, readAllBytes
සහ lines
.
ඇතුළත ඇති ක්රම org.apache.commons.io.FileUtils
ද ඉතා පහසු විය හැකිය, උදා:
/**
* Reads the contents of a file line by line to a List
* of Strings using the default encoding for the VM.
*/
static List readLines(File file)
පෙළ සමඟ ඔබට කුමක් කිරීමට අවශ්යද? ගොනුව මතකයට ගැලපෙන තරම් කුඩාද? ඔබගේ අවශ්යතා සඳහා ගොනුව හැසිරවිය හැකි සරලම ක්රමය සොයා ගැනීමට මම උත්සාහ කරමි. FileUtils පුස්තකාලය මේ සඳහා ඉතා හසුරුවයි.
for(String line: FileUtils.readLines("my-text-file"))
System.out.println(line);
org.apache.commons.io.FileUtils
කරයි. වඩාත්ම පුළුල් අර්ථය වෙනස් වන බැවින් ගූගල් සබැඳිය කාලයත් සමඟ අන්තර්ගතය වෙනස් කළ හැකි නමුත් මෙය ඔහුගේ විමසුමට ගැලපෙන අතර නිවැරදි බව පෙනේ.
readLines(String)
අතර readLines(File)
එය පක්ෂව ප්රතික්ෂේප කරනු readLines(File, Charset)
ලැබේ. කේතීකරණය ද නූලක් ලෙස සැපයිය හැකිය.
මම ජාවා හි ගොනුවක් කියවීමට ක්රම 15 ක් ලේඛනගත කළ අතර පසුව විවිධ ගොනු ප්රමාණයන්ගෙන් ඒවා පරීක්ෂා කර බැලුවෙමි - 1 KB සිට 1 GB දක්වා සහ මෙය කිරීමට හොඳම ක්රම තුන මෙන්න:
java.nio.file.Files.readAllBytes()
ජාවා 7, 8 සහ 9 හි වැඩ කිරීමට පරීක්ෂා කර ඇත.
import java.io.File;
import java.io.IOException;
import java.nio.file.Files;
public class ReadFile_Files_ReadAllBytes {
public static void main(String [] pArgs) throws IOException {
String fileName = "c:\\temp\\sample-10KB.txt";
File file = new File(fileName);
byte [] fileBytes = Files.readAllBytes(file.toPath());
char singleChar;
for(byte b : fileBytes) {
singleChar = (char) b;
System.out.print(singleChar);
}
}
}
java.io.BufferedReader.readLine()
ජාවා 7, 8, 9 හි වැඩ කිරීමට පරීක්ෂා කර ඇත.
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
public class ReadFile_BufferedReader_ReadLine {
public static void main(String [] args) throws IOException {
String fileName = "c:\\temp\\sample-10KB.txt";
FileReader fileReader = new FileReader(fileName);
try (BufferedReader bufferedReader = new BufferedReader(fileReader)) {
String line;
while((line = bufferedReader.readLine()) != null) {
System.out.println(line);
}
}
}
}
java.nio.file.Files.lines()
මෙය ජාවා 8 සහ 9 හි වැඩ කිරීමට පරීක්ෂා කළ නමුත් ලැම්බඩා ප්රකාශන අවශ්යතාවය නිසා ජාවා 7 හි ක්රියා නොකරනු ඇත.
import java.io.File;
import java.io.IOException;
import java.nio.file.Files;
import java.util.stream.Stream;
public class ReadFile_Files_Lines {
public static void main(String[] pArgs) throws IOException {
String fileName = "c:\\temp\\sample-10KB.txt";
File file = new File(fileName);
try (Stream linesStream = Files.lines(file.toPath())) {
linesStream.forEach(line -> {
System.out.println(line);
});
}
}
}
BufferedReader භාවිතා කිරීම:
import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.IOException;
BufferedReader br;
try {
br = new BufferedReader(new FileReader("/fileToRead.txt"));
try {
String x;
while ( (x = br.readLine()) != null ) {
// Printing out each line in the file
System.out.println(x);
}
}
catch (IOException e) {
e.printStackTrace();
}
}
catch (FileNotFoundException e) {
System.out.println(e);
e.printStackTrace();
}
මෙය මූලික වශයෙන් ජේසු රමෝස්ගේ පිළිතුරට සමාන වේ, ෆයිල් රීඩර් වෙනුවට ගොනුව සහ ගොනුවේ අන්තර්ගතය හරහා ගමන් කිරීම හැර.
Scanner in = new Scanner(new File("filename.txt"));
while (in.hasNext()) { // Iterates each line in the file
String line = in.nextLine();
// Do something with line
}
in.close(); // Don't forget to close resource leaks
... විසි කරයි FileNotFoundException
ස්වාරක්ෂක ප්රවාහ පංති ප්රායෝගිකව වඩා ක්රියාකාරී වන අතර, කොතරම්ද යත්, NIO.2 API හි මෙම ප්රවාහ පංති විශේෂයෙන් ආපසු ලබා දෙන ක්රම ඇතුළත් වන අතර, ඔබේ යෙදුමේ සෑම විටම ස්වාරක්ෂක ධාරාවන් භාවිතා කිරීමට ඔබව දිරිමත් කිරීම සඳහා.
මෙන්න උදාහරණයක්:
Path path = Paths.get("/myfolder/myfile.ext");
try (BufferedReader reader = Files.newBufferedReader(path)) {
// Read from the stream
String currentLine = null;
while ((currentLine = reader.readLine()) != null)
//do your code here
} catch (IOException e) {
// Handle file I/O exception...
}
ඔබට මෙම කේතය ප්රතිස්ථාපනය කළ හැකිය
BufferedReader reader = Files.newBufferedReader(path);
සමග
BufferedReader br = new BufferedReader(new FileReader("/myfolder/myfile.ext"));
ජාවා NIO සහ IO හි ප්රධාන භාවිතයන් ඉගෙන ගැනීමට මම මෙම ලිපිය නිර්දේශ කරමි .
බොහෝ විට ස්වාරක්ෂක I / O සමඟ වේගවත් නොවිය හැක.
String content;
try (Scanner scanner = new Scanner(textFile).useDelimiter("\\Z")) {
content = scanner.next();
}
මෙම \Z
රටාව කියයි Scanner
පරිසීමක EOF බව.
if(scanner.hasNext()) content = scanner.next();
මෙතෙක් වෙනත් පිළිතුරු වල එය සඳහන් කර ඇති බවක් මට නොපෙනේ. නමුත් "හොඳම" යන්නෙන් අදහස් කරන්නේ වේගය නම්, නව ජාවා අයි / ඕ (එන්අයිඕ) වේගවත්ම පෙර සූදානමක් ලබා දිය හැකි නමුත් ඉගෙන ගන්නා කෙනෙකුට පහසුවෙන් හඳුනාගත හැකි නොවේ.
http://download.oracle.com/javase/tutorial/essential/io/file.html
ජාවා හි ගොනුවකින් දත්ත කියවීමට ඇති සරලම ක්රමය නම් ගොනුව කියවීමට ගොනු පන්තිය සහ ගොනුවේ අන්තර්ගතය කියවීමට ස්කෑනර් පන්තිය භාවිතා කිරීමයි.
public static void main(String args[])throws Exception
{
File f = new File("input.txt");
takeInputIn2DArray(f);
}
public static void takeInputIn2DArray(File f) throws Exception
{
Scanner s = new Scanner(f);
int a[][] = new int[20][20];
for(int i=0; i<20; i++)
{
for(int j=0; j<20; j++)
{
a[i][j] = s.nextInt();
}
}
}
PS: java.util ආනයනය කිරීමට අමතක නොකරන්න. *; ස්කෑනරය වැඩ කිරීමට.
ගුවා මේ සඳහා එක් ලයිනර් සපයයි:
import com.google.common.base.Charsets;
import com.google.common.io.Files;
String contents = Files.toString(filePath, Charsets.UTF_8);
මෙය ප්රශ්නයට නිශ්චිත පිළිතුර නොවිය හැකිය. එය ඔබගේ ජාවා කේතයේ ඔබේ ගොනුවට යන මාර්ගය පැහැදිලිව සඳහන් නොකරන ගොනුවක් කියවීමේ තවත් ක්රමයක් වන අතර ඒ වෙනුවට ඔබ එය විධාන රේඛා තර්කයක් ලෙස කියවයි.
පහත කේතය සමඟ,
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.io.IOException;
public class InputReader{
public static void main(String[] args)throws IOException{
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
String s="";
while((s=br.readLine())!=null){
System.out.println(s);
}
}
}
ඉදිරියට ගොස් එය සමඟ ධාවනය කරන්න:
java InputReader < input.txt
මෙමඟින් අන්තර්ගතය කියවනු ඇත input.txt
ඔබේ කොන්සෝලය වෙත මුද්රණය කරයි.
System.out.println()
විධාන රේඛාව හරහා නිශ්චිත ගොනුවකට ලිවීමට ඔබට පහත පරිදි කළ හැකිය:
java InputReader < input.txt > output.txt
මෙය කියවා input.txt
ලිවීමට සිදුවේ output.txt
.
join
සම්පූර්ණ ලිපිගොනු අන්තර්ගතය එක පේළියකින් ලබා ගැනීම සඳහා ඔබට readAllLines සහ ක්රමය භාවිතා කළ හැකිය :
String str = String.join("\n",Files.readAllLines(Paths.get("e:\\text.txt")));
එය පෙරනිමියෙන් UTF-8 කේතීකරණය භාවිතා කරයි, එය ASCII දත්ත නිවැරදිව කියවයි.
ඔබට readAllBytes භාවිතා කළ හැකිය:
String str = new String(Files.readAllBytes(Paths.get("e:\\text.txt")), StandardCharsets.UTF_8);
මම හිතන්නේ readAllBytes වේගවත් හා වඩා නිවැරදි ය, මන්ද එය නව පේළිය වෙනුවට ආදේශ නොකරන අතර නව රේඛාවක් \n
ද විය හැකිය \r\n
. එය ඔබගේ අවශ්යතා මත රඳා පවතී.
JSF මත පදනම් වූ Maven වෙබ් යෙදුම් සඳහා, Resources
ඔබට අවශ්ය ඕනෑම ගොනුවක කියවීමට ClassLoader සහ ෆෝල්ඩරය භාවිතා කරන්න:
Apache Commons IO යැපීම ඔබේ POM එකට දමන්න:
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-io</artifactId>
<version>1.3.2</version>
</dependency>
එය කියවීමට පහත කේතය භාවිතා කරන්න (උදා: පහත දැක්වෙන්නේ .json ගොනුවක කියවීම):
String metadata = null;
FileInputStream inputStream;
try {
ClassLoader loader = Thread.currentThread().getContextClassLoader();
inputStream = (FileInputStream) loader
.getResourceAsStream("/metadata.json");
metadata = IOUtils.toString(inputStream);
inputStream.close();
}
catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return metadata;
පෙළ ලිපිගොනු, .ප්රති ලිපිගොනු, එක්ස්එස්ඩී යෝජනා ක්රම ආදිය සඳහා ඔබට එයම කළ හැකිය .
මෙය ව්යුහයේ සරල බව ගැන නම් ජාවා හාදුව භාවිතා කරන්න :
import static kiss.API.*;
class App {
void run() {
String line;
try (Close in = inOpen("file.dat")) {
while ((line = readLine()) != null) {
println(line);
}
}
}
}
import java.util.stream.Stream;
import java.nio.file.*;
import java.io.*;
class ReadFile {
public static void main(String[] args) {
String filename = "Test.txt";
try(Stream<String> stream = Files.lines(Paths.get(filename))) {
stream.forEach(System.out:: println);
} catch (IOException e) {
e.printStackTrace();
}
}
}
ජාවා 8 ධාරාව භාවිතා කරන්න.
try {
File f = new File("filename.txt");
Scanner r = new Scanner(f);
while (r.hasNextLine()) {
String data = r.nextLine();
JOptionPane.showMessageDialog(data);
}
r.close();
} catch (FileNotFoundException ex) {
JOptionPane.showMessageDialog("Error occurred");
ex.printStackTrace();
}
වඩාත්ම බුද්ධිමත් ක්රමය ජාවා 11 හි හඳුන්වා දී ඇත Files.readString
import java.io.*;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String args[]) throws IOException {
String content = Files.readString(Paths.get("D:\\sandbox\\mvn\\my-app\\my-app.iml"));
System.out.print(content);
}
}
පීඑච්පී දශක ගණනාවකට පෙර සිට මෙම සුඛෝපභෝගී බව! ☺
මා වැඩසටහන්ගත කළ මෙම කේතය ඉතා විශාල ගොනු සඳහා වඩා වේගවත් ය:
public String readDoc(File f) {
String text = "";
int read, N = 1024 * 1024;
char[] buffer = new char[N];
try {
FileReader fr = new FileReader(f);
BufferedReader br = new BufferedReader(fr);
while(true) {
read = br.read(buffer, 0, N);
text += new String(buffer, 0, read);
if(read < N) {
break;
}
}
} catch(Exception ex) {
ex.printStackTrace();
}
return text;
}
+=
මේ ආකාරයෙන් භාවිතා කිරීමෙන් රේඛීය සංකීර්ණ විය යුතු කාර්යයක් සඳහා චතුරස්රාකාර (!) සංකීර්ණතාවයක් ලබා දේ. මෙය mb කිහිපයකට වඩා ලිපිගොනු සඳහා බඩගා යාමට පටන් ගනී. මෙය වටහා ගැනීම සඳහා ඔබ පෙළ වාරණ <string> ලැයිස්තුවක තබා ගත යුතුය, නැතහොත් ඉහත සඳහන් කළ නූල් සාදන්නා භාවිතා කළ යුතුය.
String fileName = 'yourFileFullNameWithPath';
File file = new File(fileName); // Creates a new file object for your file
FileReader fr = new FileReader(file);// Creates a Reader that you can use to read the contents of a file read your file
BufferedReader br = new BufferedReader(fr); //Reads text from a character-input stream, buffering characters so as to provide for the efficient reading of characters, arrays, and lines.
ඉහත පේළිය තනි පේළියකට මෙසේ ලිවිය හැකිය:
BufferedReader br = new BufferedReader(new FileReader("file.txt")); // Optional
නූල් සාදන්නාට එකතු කිරීම (ඔබ ගොනු විශාල නම්, නූල් සාදන්නා භාවිතා කිරීමට උපදෙස් දෙනු ලැබේ, නැතිනම් සාමාන්ය සංගීත වස්තුව භාවිතා කරන්න)
try {
StringBuilder sb = new StringBuilder();
String line = br.readLine();
while (line != null) {
sb.append(line);
sb.append(System.lineSeparator());
line = br.readLine();
}
String everything = sb.toString();
} finally {
br.close();
}