当前位置: 技术问答>java相关
问个很菜的问题!
来源: 互联网 发布时间:2015-02-02
本文导语: 我想读一个文件,每次读取一行内容,并把结果保存在VECTOR里,然后显示出来!我的代码是: import java.io.*; import java.util.*; public class MyReadFile{ public static void main(String[] args){ Vector vs=new Vector(); DataInputStream in=new D...
我想读一个文件,每次读取一行内容,并把结果保存在VECTOR里,然后显示出来!我的代码是:
import java.io.*;
import java.util.*;
public class MyReadFile{
public static void main(String[] args){
Vector vs=new Vector();
DataInputStream in=new DataInputStream(new BufferedInputStream(new FileInputStream("text.txt")));
String s,s2=new String();
while ((s=in.readLine())!=null)
{s2=s+'n';
vs.addElement(s2);}}
public MyReadFile(){
while(vs.hasMoreElements())
System.out.println(""+vs.nextElement());}
}
程序提示有错误,错误为不能识别变量VS,这是怎么回事?
import java.io.*;
import java.util.*;
public class MyReadFile{
public static void main(String[] args){
Vector vs=new Vector();
DataInputStream in=new DataInputStream(new BufferedInputStream(new FileInputStream("text.txt")));
String s,s2=new String();
while ((s=in.readLine())!=null)
{s2=s+'n';
vs.addElement(s2);}}
public MyReadFile(){
while(vs.hasMoreElements())
System.out.println(""+vs.nextElement());}
}
程序提示有错误,错误为不能识别变量VS,这是怎么回事?
|
老姐帮你吧:)
在main函数中加上:
MyReadFile read=new MyReadFile();
read.vs.addElement(s2);
希望能帮到你
在main函数中加上:
MyReadFile read=new MyReadFile();
read.vs.addElement(s2);
希望能帮到你
|
你的问题太多了,要记住,java中很多都是以xxx。xxx进行饮用的,一切都是对象!!你
另外,例外在这里必须捕获。
try {
Vector vs=new Vector();
DataInputStream in=new DataInputStream(new BufferedInputStream(new FileInputStream("text.txt")));
String s,s2=new String();
while ((s=in.readLine())!=null) {
s2=s+'n';
vs.addElement(s2);
}
for (int i=0;i
另外,例外在这里必须捕获。
try {
Vector vs=new Vector();
DataInputStream in=new DataInputStream(new BufferedInputStream(new FileInputStream("text.txt")));
String s,s2=new String();
while ((s=in.readLine())!=null) {
s2=s+'n';
vs.addElement(s2);
}
for (int i=0;i
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
站内导航:
特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!