把记事本中的JAVA程序导入eclipse中,出现“package does not match the expected package”错误?
程序Test31.java在CMD中可以正常运行(javac-d.Test31.java),在当前目录生成包,但把代码导入eclipse中,第一行的“packagegz....
程序Test31.java在CMD中可以正常运行(javac -d . Test31.java),在当前目录生成包,但把代码导入eclipse中,第一行的“ package gz.mythread;”就会出错,应该是路径不对,请问在ECLIPSE中怎样设置package,谢谢。
代码如下:
package gz.mythread; //在ECLIPSE中,这一行报错
class Info{
private String name="xiaoting";
private String context="teacher";
private boolean flag=false;
public synchronized void set(String name,String context){
if(!flag){
try{
super.wait();
}catch(Exception e){
e.printStackTrace();
}
}
this.setName(name);
try{
Thread.sleep(300);
}catch(Exception e){
e.printStackTrace();
}
this.setContext(context);
flag=false;
super.notify();
}
public synchronized void get(){
if(flag){
try{
super.wait();
}catch(Exception e){
e.printStackTrace();
}
}
try{
Thread.sleep(300);
}catch(Exception e){
e.printStackTrace();
}
System.out.println(this.getName()+"-->"+this.getContext());
flag=true;
super.notify();
}
public String getName(){
return name;
}
public void setName(String name){
this.name=name;
}
public String getContext(){
return context;
}
public void setContext(String context){
this.context=context;
}
}
class Producer implements Runnable{
……
}
class Consumer implements Runnable{
……
}
public class Test55 {
public static void main(String[] args){
Info i=new Info();
Producer pro=new Producer(i);
Consumer com=new Consumer(i);
new Thread(pro).start();
new Thread(com).start();
}
} 展开
代码如下:
package gz.mythread; //在ECLIPSE中,这一行报错
class Info{
private String name="xiaoting";
private String context="teacher";
private boolean flag=false;
public synchronized void set(String name,String context){
if(!flag){
try{
super.wait();
}catch(Exception e){
e.printStackTrace();
}
}
this.setName(name);
try{
Thread.sleep(300);
}catch(Exception e){
e.printStackTrace();
}
this.setContext(context);
flag=false;
super.notify();
}
public synchronized void get(){
if(flag){
try{
super.wait();
}catch(Exception e){
e.printStackTrace();
}
}
try{
Thread.sleep(300);
}catch(Exception e){
e.printStackTrace();
}
System.out.println(this.getName()+"-->"+this.getContext());
flag=true;
super.notify();
}
public String getName(){
return name;
}
public void setName(String name){
this.name=name;
}
public String getContext(){
return context;
}
public void setContext(String context){
this.context=context;
}
}
class Producer implements Runnable{
……
}
class Consumer implements Runnable{
……
}
public class Test55 {
public static void main(String[] args){
Info i=new Info();
Producer pro=new Producer(i);
Consumer com=new Consumer(i);
new Thread(pro).start();
new Thread(com).start();
}
} 展开
3个回答
展开全部
右键单击在上面的source下,选择相应的source folder,点击右边的Edit,
在Linked folder location对话框中的路径后追加路径到包的上一层。
在Linked folder location对话框中的路径后追加路径到包的上一层。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询