-1

在每个示例中,我都发现使用了这个导入:import layout.TableLayout; 我已经下载了 jar 文件,但是我在导入它时遇到了问题。任何人?

4

1 回答 1

1

To be able to use a jar file, you need to either add it to the classpath. This can be done either by compiling on the command line with the javac -cp theJarFilePath TheJavaFile.java command, or by adding the jar to the build path if using an IDE.

于 2013-04-17T19:29:46.523 回答