由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Java版 - Re: 急问关于applet里打开文件的问题
相关主题
String和java.lang.String有区别吗?赶快帮帮我!
●●●●紧急求助JAVA初级问题,今天project due●●●●再问个java的蠢问题,别骂我
不用main(String args[]),怎样输出"hello world"?愣是笨到家----整不明白applet的path
Re: How to creat a newinstance with a param??为什么我这个html找不到applet class?
JTextArea做console窗口的目前结果和问题Re: Need Emergent help for Java I/O!
如何确保每次读入的字符串都是unique的Java的中文读写问题
Re: How to write to a file on server in an applet?新手请教怎样在Java里读文本文件中的内容
a question regarding applet文件是要放在同目录下的吗?
相关话题的讨论汇总
话题: tempc话题: string话题: temps话题: fis话题: path
进入Java版参与讨论
1 (共1页)
c*******c
发帖数: 7
1
Use this code:
public void lookup(String s) {
int tempc;
InputStream fis;
String temps="";
String path = getCodeBase().getFile()+"ros.txt";
try {
fis = new FileInputStream(path);
while ((tempc=fis.read()) != -1) {

temps = temps+(char)tempc;

}
} catch (Exception e) {
System.out.println(e.getMessage());
return;
}
S
1 (共1页)
进入Java版参与讨论
相关主题
文件是要放在同目录下的吗?JTextArea做console窗口的目前结果和问题
[合集] Java read/write binary floating point data files?如何确保每次读入的字符串都是unique的
请教读取中文文件的问题Re: How to write to a file on server in an applet?
从文件读入数据得到的是bytesa question regarding applet
String和java.lang.String有区别吗?赶快帮帮我!
●●●●紧急求助JAVA初级问题,今天project due●●●●再问个java的蠢问题,别骂我
不用main(String args[]),怎样输出"hello world"?愣是笨到家----整不明白applet的path
Re: How to creat a newinstance with a param??为什么我这个html找不到applet class?
相关话题的讨论汇总
话题: tempc话题: string话题: temps话题: fis话题: path