代码搜索:ClassPath
找到约 10,000 项符合「ClassPath」的源代码
代码结果 10,000
www.eeworm.com/read/404454/11485045
bat build.bat
@echo off
cd ..
if not exist tmpclasses mkdir tmpclasses
if not exist classes mkdir classes
echo *** Compiling source files...
javac -g:none -bootclasspath c:\WTK21\lib\cldcapi11.zip;c:\WTK
www.eeworm.com/read/404454/11485049
bat run.bat
@echo off
echo *** Running the emulator...
c:\WTK21\bin\emulator -classpath Skeleton.jar -Xdescriptor:Skeleton.jad
www.eeworm.com/read/404304/11488872
txt readme.txt
MyCalendar Source Code Raadme File
By Fancy on 2002-3-25
------------------------------------------------------------------------
INDEX
--------------------------------------------------------------
www.eeworm.com/read/404139/11491372
properties project.properties
application.args=
build.classes.dir=${build.dir}/classes
build.classes.excludes=**/*.java,**/*.form
# \u6e05\u7406\u9879\u76ee\u65f6\u5220\u9664\u6b64\u76ee\u5f55\uff1a
build.dir=build
build.gene
www.eeworm.com/read/403968/11493443
txt 1196.txt
日月光华 -- Unix精华区文章阅读
--------------------------------------------------------------------------------
发信人: monkey (cowboy), 信区: Unix
标 题: java在Linux下的web应用(二)
发信站: 日月光华站 (Wed Oct 11 22:19:49 2000
www.eeworm.com/read/403968/11493576
txt 1177.txt
日月光华 -- Unix精华区文章阅读
--------------------------------------------------------------------------------
发信人: monkey (cowboy), 信区: Unix
标 题: java在Linux下的web应用(二)
发信站: 日月光华站 (Wed Oct 11 22:19:49 2000
www.eeworm.com/read/403744/11511473
txt 3.25.txt
1.要学会设置环境变量:
右键我的电脑,选择属性,高级,环境变量,选择系统变量,
对其设置path,<mark>classpath</mark>设置路径,其中path是设置bin的路径(如有两个路径,要在中间加上;),<mark>classpath</mark>是设置文件存放的路径(在路径前要有.;)。
注意:
在执行javac,java命令的时候,一定要在<mark>classpath</mark>的路径下执行,否则可能出现故障。
2.学会编写简单的java程序 ...