请问这是怎么回事?JAVA在运行时出现下面这个错误,程序没有问题。 错误: 找不到或无法加载主类
importjava.io.BufferedReader;importjava.io.FileReader;importjava.io.IOException;impor...
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
import java.util.regex.*;
public class One {
public static void main(String[] args){
try{
String content=read( " F:/电话号码.txt");
//System.out.println(content);
String regex=" \\d{3}-\\d{8}";
Matcher m=Pattern.compile(regex).matcher(content);
while(m.find()){
System.out.println(m.group());
}
}catch(IOException e){
e.printStackTrace();
}
}
public static String read(String fileName) throws IOException{
BufferedReader br=new BufferedReader(new FileReader(fileName));
StringBuilder sb=new StringBuilder();
String s;
while((s=br.readLine())!=null){
sb.append(s);
sb.append("/r/n");
}
br.close();
return sb.toString();
}
} 展开
import java.io.FileReader;
import java.io.IOException;
import java.util.regex.*;
public class One {
public static void main(String[] args){
try{
String content=read( " F:/电话号码.txt");
//System.out.println(content);
String regex=" \\d{3}-\\d{8}";
Matcher m=Pattern.compile(regex).matcher(content);
while(m.find()){
System.out.println(m.group());
}
}catch(IOException e){
e.printStackTrace();
}
}
public static String read(String fileName) throws IOException{
BufferedReader br=new BufferedReader(new FileReader(fileName));
StringBuilder sb=new StringBuilder();
String s;
while((s=br.readLine())!=null){
sb.append(s);
sb.append("/r/n");
}
br.close();
return sb.toString();
}
} 展开
4个回答
展开全部
据说,这个是因为你的环境变量没有设置好
http://zhidao.baidu.com/question/523320925.html
http://zhidao.baidu.com/question/523320925.html
追问
这个是在eclipse环境下运行的。
追答
看了你发的图 你右键项目properties 在build path里面的library的jdbc的包给remove掉,
应该是你用了以前的项目,然后jdbc的包路径错误 没办法编译导致的吧
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询