当前位置:首页 » 编程语言 » java访问文件

java访问文件

发布时间: 2022-02-26 00:44:49

① 怎么用java实现打开文件(打开方法)

Process p = Runtime.getRuntime().exec("notepad");.

可以用java执行cmd命令的方式打开程序,比如上面是打开windows记事本的指令。如果你要打开其他文件,那就把notepad改成对应的文件名或程序名

② java访问相对路径文件

BBB/conf/default.conf

③ java 怎么访问服务器的文件

http的话就用httpclient。open后,可以返回一个InputStream。这个就是你要读到文件流。原理的话,参考你用浏览器打开这个链接显示的内容。这个返回的是一个HTML网页,需要你解析出里面的文字(一般来说取body中间的内容就行)其实对于这种文

④ 如何用Java新建文件,及访问目录下文件

import java.util.Scanner;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
public class Demo1{
public static void main(String[] args){
Scanner inputStream=null;
try{
inputStream=new Scanner(new FileInputStream("Demo--演示.txt"));
}
catch(FileNotFoundException e){
System.out.println("错了");
System.exit(0);
}
while(inputStream.hasNextLine()){
String name=inputStream.nextLine();
System.out.println(name);

}//读取该目录的所有信息
System.out.println("结束任务!");
inputStream.close();

}
}

⑤ java程序问题,访问文件内容

package d0508;

import java.io.*;

public class Read {

/**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
String tmp = ""; //输入你要的字符
BufferedReader br=null;
RandomAccessFile rf = null;
try {
br = new BufferedReader(new FileReader("test.txt"));
rf = new RandomAccessFile("result.txt", "rw");
int flag = 0;
while((tmp=br.readLine())!=null){
flag++;
if(flag==1)
continue;
tmp = tmp.substring(tmp.indexOf(":")+1);
rf.writeBytes(tmp+"\n");
System.out.println(tmp);
}
} catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}finally{
if(rf!=null){
try {
rf.close();
br.close();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
}

}

⑥ Java读取文件的几种方式

方式一:采用ServletContext读取,读取配置文件的realpath,然后通过文件流读取出来。因为是用ServletContext读取文件路径,所以配置文件可以放入在web-info的classes目录中,也可以在应用层级及web-info的目录中。文件存放位置具体在eclipse工程中的表现是:可以放在src下面,也可放在web-info及webroot下面等。因为是读取出路径后,用文件流进行读取的,所以可以读取任意的配置文件包括xml和properties。缺点:不能在servlet外面应用读取配置信息。
方式二:采用ResourceBundle类读取配置信息,
优点是:可以以完全限定类名的方式加载资源后,直接的读取出来,且可以在非Web应用中读取资源文件。缺点:只能加载类classes下面的资源文件且只能读取.properties文件。
方式三:采用ClassLoader方式进行读取配置信息
优点是:可以在非Web应用中读取配置资源信息,可以读取任意的资源文件信息
缺点:只能加载类classes下面的资源文件。
方法4 getResouceAsStream
XmlParserHandler.class.getResourceAsStream 与classloader不同

⑦ java中如何从文件中读取数据

1.package txt;
2.
3.import java.io.BufferedReader;
4.import java.io.File;
5.import java.io.FileInputStream;
6.import java.io.InputStreamReader;
7.
8./**
9. * 读取TXE数据
10. */
11.public class ReadTxtUtils {
12. public static void main(String arg[]) {
13. try {
14. String encoding = "GBK"; // 字符编码(可解决中文乱码问题 )
15. File file = new File("c:/aa.txt");
16. if (file.isFile() && file.exists()) {
17. InputStreamReader read = new InputStreamReader(
18. new FileInputStream(file), encoding);
19. BufferedReader bufferedReader = new BufferedReader(read);
20. String lineTXT = null;
21. while ((lineTXT = bufferedReader.readLine()) != null) {
22. System.out.println(lineTXT.toString().trim());
23. }
24. read.close();
25. }else{
26. System.out.println("找不到指定的文件!");
27. }
28. } catch (Exception e) {
29. System.out.println("读取文件内容操作出错");
30. e.printStackTrace();
31. }
32. }
33.}
java读取TXT文件中的数据,每一行就是一个数,返回一个数组,代码?
?
List list=new ArrayList();
BufferedReader br=new BufferReader(new InputStreamReader(new FileInputStream(new File("in.txt"))));
String str=null;
while((str=br.readLine())!=null)
{
list.add(new Integer(str));

}
Integer[] i=new Integer[list.size()];
list.toArray(i);

TXT文本中如据形如:
123
456
789

读入二维数组效果为:
temp[0][]={1,2,3};
temp[1][]={4,5,6};
temp[2][]={7,8,9};

import java.io.BufferedReader;
import java.io.FileNotFoundException;
import java.io.FileReader;
import java.io.*;

public class xx{
public static void main(String[]args){
String s;
int[][]save=new int[3][3];
try{
BufferedReader in =new BufferedReader(new FileReader("C:\\txt.txt"));
int i=0;
while((s=in.readLine())!=null){
save[i][0]=Integer.parseInt(s.substring(0,1));
save[i][1]=Integer.parseInt(s.substring(1,2));
save[i][2]=Integer.parseInt(s.substring(2,3));
i++;
}
}
catch(FileNotFoundException e){
e.printStackTrace();
}
catch(IOException e){
e.printStackTrace();
}
for(int i=0;i<3;i++)
{
for(int j=0;j<3;j++){
System.out.print(save[i][j]);
}
System.out.println();
}
}
}


?
BufferedReader bf=new BufferedReader(new FileReader("Your file"));
String lineContent=null;
int i = 0;
int [][] temp = new int [3][];
while((lineContent=bf.readLine())!=null){
String [] str = lineContent.split("\\d");// 将 lineContent 按数字拆分
for(int j = 0; j < str.length(); j++){
int [i][j] = Integer.parseInt(str[j]);
}
i++;
}

scp|cs|ff|201101
这是d:\\a.txt的数据,与“|”分割取数据出来,保存在变量a;b;c;d里

import java.io.*;

public class Test{
public static void main(String[] args)throws Exception{
String a, b, c, d;
StringBuffer sb = new StringBuffer();
BufferedReader br = new BufferedReader(new FileReader("d:\\a.txt"));
String s = br.readLine();
while(s != null){
sb.append(s);
s = br.readLine();
}
s = sb.toString();
String[] str = s.split("|");
a = str[0];
b = str[0];
c = str[0];
d = str[0];
}
}

⑧ java访问文件问题

读写jar内的文件的话就不能使用这样的方法了,首先路径不能是绝对路径,因为jar是一个压缩文件,而不是一个目录了,直接使用绝对路径是找不到它的。你可以使用java.util.jar里面的相关类来读写。不过我建议最好不要把要读写的文件放置到jar内,因为jar是压缩过的文件,读写的话要经过解压、压缩的过程,比较耗时间,效率不好还容易出错。

⑨ 怎样用java打开指定文件

File file = new File("文件绝对路径");
Desktop.getDesktop().open(file);
即可调用系统的默认打开工具,打开这个文件

热点内容
java生成文件 发布:2025-01-10 19:30:35 浏览:30
文件链接上传 发布:2025-01-10 19:30:32 浏览:905
linux安装sqlite 发布:2025-01-10 19:09:43 浏览:81
java工程师证 发布:2025-01-10 18:54:02 浏览:36
python如何判断密码强度 发布:2025-01-10 18:39:58 浏览:983
安卓怎么快捷关程序 发布:2025-01-10 18:35:48 浏览:925
仔细的算法 发布:2025-01-10 18:28:30 浏览:549
c语言判断是否为回文数 发布:2025-01-10 18:21:31 浏览:786
win7vhd加密 发布:2025-01-10 18:20:35 浏览:423
手机存储空间里的其他怎么清理 发布:2025-01-10 18:19:59 浏览:804