在java中,如何将已经读到的txt文件内容写进数据库
这个是我写的读取文件,但是不知道下一步该怎么进行,控制台读到的文件下面有图片,希望大神们可以给我点代码研磨一下,我的大致思路是,把读取读到的文件进到数据库,要是能够读取到...
这个是我写的读取文件,但是不知道下一步该怎么进行,控制台读到的文件下面有图片,希望大神们可以给我点代码研磨一下,我的大致思路是,把读取读到的文件进到数据库,要是能够读取到相应的栏位那就太好了
package File;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.Reader;
/**
* 以字符为单位读取文件,用于读取文本,数字类型的文件*/
public
class ReadFile{
public
static void ReadFiled(ReadFile fileName) {
File file =new File("E:/test/test.txt");
Reader reader =null;
try {
char[] tempchars = new char[3000000];
nt charread = 0;
reader =new InputStreamReader(new FileInputStream(file));
// 读多个字符串到字符数组中
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.ut.print(tempchars[i]);
}
}
}
}
}
catch (IOException e1) {
e1.printStackTrace();
}
finally { f (reader != null) {
try {
reader.close();
}
catch (IOException e1) {
}
}
}
}
}
///main 入口
package
File;
public
class ReadMain {
/**
*
@param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
ReadFile file =new ReadFile();
ReadFile.ReadFiled(file);
}
} 展开
package File;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.Reader;
/**
* 以字符为单位读取文件,用于读取文本,数字类型的文件*/
public
class ReadFile{
public
static void ReadFiled(ReadFile fileName) {
File file =new File("E:/test/test.txt");
Reader reader =null;
try {
char[] tempchars = new char[3000000];
nt charread = 0;
reader =new InputStreamReader(new FileInputStream(file));
// 读多个字符串到字符数组中
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.ut.print(tempchars[i]);
}
}
}
}
}
catch (IOException e1) {
e1.printStackTrace();
}
finally { f (reader != null) {
try {
reader.close();
}
catch (IOException e1) {
}
}
}
}
}
///main 入口
package
File;
public
class ReadMain {
/**
*
@param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
ReadFile file =new ReadFile();
ReadFile.ReadFiled(file);
}
} 展开
若以下回答无法解决问题,邀请你更新回答
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询