程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程解疑 >> java 環境變量設置-錯誤: 程序包net.mindview不存在?能否通過設置環境變量來解決?請各位幫忙分析,謝謝

java 環境變量設置-錯誤: 程序包net.mindview不存在?能否通過設置環境變量來解決?請各位幫忙分析,謝謝

編輯:編程解疑
錯誤: 程序包net.mindview不存在?能否通過設置環境變量來解決?請各位幫忙分析,謝謝

//: initialization/Flower.java
// Calling constructors with "this"
import static net.mindview.util.Print.*;

public class Flower {
  int petalCount = 0;
  String s = "initial value";
  Flower(int petals) {
    petalCount = petals;
    print("Constructor w/ int arg only, petalCount= "
      + petalCount);
  }
  Flower(String ss) {
    print("Constructor w/ String arg only, s = " + ss);
    s = ss;
  }
  Flower(String s, int petals) {
    this(petals);
//!    this(s); // Can't call two!
    this.s = s; // Another use of "this"
    print("String & int args");
  }
  Flower() {
    this("hi", 47);
    print("default constructor (no args)");
  }
  void printPetalCount() {
//! this(11); // Not inside non-constructor!
    print("petalCount = " + petalCount + " s = "+ s);
  }
  public static void main(String[] args) {
    Flower x = new Flower();
    x.printPetalCount();
 }
} /* Output:
Constructor w/ int arg only, petalCount= 47
String & int args
default constructor (no args)
petalCount = 47 s = hi

*///:~

問題:C:\Users\lenovo\Desktop\TIJ4-code\initialization>javac Flower
Flower.java:3: 錯誤: 程序包net.mindview不存在
import static net.mindview.util.Print;
                      ^
Flower.java:3: 錯誤: 僅從類和接口靜態導入
import static net.mindview.util.Print;
^
Flower.java:10: 錯誤: 找不到符號
    print("Constructor w/ int arg only, petalCount= "
    ^
  符號:   方法 print(String)
  位置: 類 Flower
Flower.java:14: 錯誤: 找不到符號
 print("Constructor w/ String arg only, s = " + ss);
^
  符號:   方法 print(String)
  位置: 類 Flower
Flower.java:21: 錯誤: 找不到符號
print("String & int args");
^
  符號:   方法 print(String)
  位置: 類 Flower
Flower.java:25: 錯誤: 找不到符號
print("default constructor (no args)");
^
  符號:   方法 print(String)
  位置: 類 Flower
Flower.java:29: 錯誤: 找不到符號
print("petalCount = " + petalCount + " s = "+ s);
^
  符號:   方法 print(String)
  位置: 類 Flower
 7 個錯誤

我用的是editplus 編輯的,在DOS裡運行的,能否通過把net.mindview.util進行classpath環境變量設置來解決這個問題?

最佳回答:


設置當前路徑變量:
set np=%~dp0
將當前路徑下的jar包引入classpath:
set CLASSPATH=%CLASSPATH%;%np%mina.jar

這個示例你可以在你的bat加上,很容易的。

如果幫到你了,希望結帖,今天比較忙,一直都沒時間上csdn來看看。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved