java -jar .jar -c,使用多个.jar和javac

pardon my terminology. I'm trying to use three jar files with a java program for my CS class. The first is funjava, a simplified java language, and the others are class definitions color and geometry. Here is my code and what happens when I try to run it.

import colors.*;

class Canvas{

public static void main(String [] args){

System.out.println("test123");

Circle cr1 = new Circle( new Posn(1,2), 5, "blue");

Circle cr2 = new Circle( new Posn(5,4), 3, "red");

}

}

class Circle{

Posn center;

int rad;

String color;

Circle(Posn p, int r, String c){

this.center = p;

this.rad = r;

this.color = c;

}

}

class Posn{

int x;

int y;

Posn(int x, int y){

this.x = x;

this.y = y;

}

}

The last argument of Circle should be a color from the colors.jar, not a string.

niko@niko-laptop:~/Classes/Fundies2$ javac -cp *.jar Canvas.java

error: Class names, 'funjava.jar,geometry.jar', are only accepted if annotation processing is explicitly requested

1 error

niko@niko-laptop:~/Classes/Fundies2$ ls

1-20-10.java 1-21-10.java Book.class Canvas.class Circle.java Examples.class funjava.jar hw1~ Main.java OceanWorld.java

1-21-10 Author.class book.java Canvas.java colors.jar Examples.java geometry.jar Ishape OceanWorld Posn.class

1-21-10~ Author.java Book.java Circle.class Combo.java Fundies2.txt hw1 Main.class OceanWorld~ Rect.java

So how do I explicitly request annotation processing?

Thank you.

解决方案

In addition to Romain Muller's answer:

If you want to quickly use all of the *.jar files in the current directory, and you're using JDK 6 or later, you can use a single-asterisk. In a unix shell (like in Linux), you'll need to escape the asterisk:

javac -cp \* Canvas.java

This works when running the Java application as well:

java -cp .:\* Canvas

Note the .: to tell Java to look in the current directory as well as the *.jar files to find Canvas.class.

On Windows, use a semicolon (;) instead of a colon as a separator.

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值