当前位置: 操作系统/服务器>windows
本页文章导读:
▪推荐一些比较友好的最好是编辑类的软件解决办法 推荐一些比较友好的最好是编辑类的软件顺便说明一下那些功能比较好用,有劳各位试试PilotEdit,不过不是免费的。http://www.pilotedit.com/uploads/PilotEdit_3.1.0.zip
文本?视频?图片?模型?。。.........
▪ 哪位高手有关于windows ce 的好资料啊 谁有关于windows ce 的好资料啊?最近要写一篇关于学习windows ce的论文 哎 一直找不到好的资料? 谁可以帮忙啊? 感谢
楼主想要别人写好的论文?我给你这个东西,是让你多看看,然后这.........
▪ 批处理 "系统找不到指定的批处理标签" 的有关问题 批处理 "系统找不到指定的批处理标签" 的问题用ant -f build.xml调用ant.bat为什么会报系统找不到指定的批处理标签 - end 在最后第7行有:end啊, 然后把:end放到最后就不报错了, 求解.ant的版本是1.7.0.........
[1]推荐一些比较友好的最好是编辑类的软件解决办法
来源: 互联网 发布时间: 2014-02-18
推荐一些比较友好的最好是编辑类的软件
顺便说明一下那些功能比较好用,有劳各位
试试PilotEdit,不过不是免费的。
http://www.pilotedit.com/uploads/PilotEdit_3.1.0.zip
文本?视频?图片?模型?。。。。。。
楼主把问题描述清楚点,谢谢!
UltraEdit
"比较友好的最好是编辑类的软件",编辑什么的软件???友好的标准是什么???
ultrastudio
http://community.csdn.net/IndexPage/SmartQuestion.aspx
过~~
顺便说明一下那些功能比较好用,有劳各位
试试PilotEdit,不过不是免费的。
http://www.pilotedit.com/uploads/PilotEdit_3.1.0.zip
文本?视频?图片?模型?。。。。。。
楼主把问题描述清楚点,谢谢!
UltraEdit
"比较友好的最好是编辑类的软件",编辑什么的软件???友好的标准是什么???
ultrastudio
http://community.csdn.net/IndexPage/SmartQuestion.aspx
过~~
[2] 哪位高手有关于windows ce 的好资料啊
来源: 互联网 发布时间: 2014-02-18
谁有关于windows ce 的好资料啊?
最近要写一篇关于学习windows ce的论文 哎 一直找不到好的资料? 谁可以帮忙啊? 感谢
楼主想要别人写好的论文?
我给你这个东西,是让你多看看,然后这些东西会属于你自己,然后会由感而发论文。。。
如果楼主纯粹以论文为跳板为敲门砖,那么就把俺说的话当废话吧。
最近要写一篇关于学习windows ce的论文 哎 一直找不到好的资料? 谁可以帮忙啊? 感谢
楼主想要别人写好的论文?
我给你这个东西,是让你多看看,然后这些东西会属于你自己,然后会由感而发论文。。。
如果楼主纯粹以论文为跳板为敲门砖,那么就把俺说的话当废话吧。
[3] 批处理 "系统找不到指定的批处理标签" 的有关问题
来源: 互联网 发布时间: 2014-02-18
批处理 "系统找不到指定的批处理标签" 的问题
用ant -f build.xml调用ant.bat为什么会报
系统找不到指定的批处理标签 - end
在最后第7行有:end啊, 然后把:end放到最后就不报错了, 求解.
ant的版本是1.7.0, ant.bat也没有改.
VBScript code
用ant -f build.xml调用ant.bat为什么会报
系统找不到指定的批处理标签 - end
在最后第7行有:end啊, 然后把:end放到最后就不报错了, 求解.
ant的版本是1.7.0, ant.bat也没有改.
VBScript code
if exist "%HOME%\antrc_pre.bat" call "%HOME%\antrc_pre.bat" if "%OS%"=="Windows_NT" @setlocal if "%OS%"=="WINNT" @setlocal rem %~dp0 is expanded pathname of the current script under NT set DEFAULT_ANT_HOME=%~dp0.. if "%ANT_HOME%"=="" set ANT_HOME=%DEFAULT_ANT_HOME% set DEFAULT_ANT_HOME= set _USE_CLASSPATH=yes rem Slurp the command line arguments. This loop allows for an unlimited number rem of arguments (up to the command line limit, anyway). set ANT_CMD_LINE_ARGS=%1 if ""%1""=="""" goto doneStart shift :setupArgs if ""%1""=="""" goto doneStart if ""%1""==""-noclasspath"" goto clearclasspath set ANT_CMD_LINE_ARGS=%ANT_CMD_LINE_ARGS% %1 shift goto setupArgs rem here is there is a -noclasspath in the options :clearclasspath set _USE_CLASSPATH=no shift goto setupArgs rem This label provides a place for the argument list loop to break out rem and for NT handling to skip to. :doneStart rem find ANT_HOME if it does not exist due to either an invalid value passed rem by the user or the %0 problem on Windows 9x if exist "%ANT_HOME%\lib\ant.jar" goto checkJava rem check for ant in Program Files if not exist "%ProgramFiles%\ant" goto checkSystemDrive set ANT_HOME=%ProgramFiles%\ant goto checkJava :checkSystemDrive rem check for ant in root directory of system drive if not exist %SystemDrive%\ant\lib\ant.jar goto checkCDrive set ANT_HOME=%SystemDrive%\ant goto checkJava :checkCDrive rem check for ant in C:\ant for Win9X users if not exist C:\ant\lib\ant.jar goto noAntHome set ANT_HOME=C:\ant goto checkJava :noAntHome echo ANT_HOME is set incorrectly or ant could not be located. Please set ANT_HOME. goto end :checkJava set _JAVACMD=%JAVACMD% if "%JAVA_HOME%" == "" goto noJavaHome if not exist "%JAVA_HOME%\bin\java.exe" goto noJavaHome if "%_JAVACMD%" == "" set _JAVACMD=%JAVA_HOME%\bin\java.exe goto checkJikes :noJavaHome if "%_JAVACMD%" == "" set _JAVACMD=java.exe :checkJikes if not "%JIKESPATH%"=="" goto runAntWithJikes :runAnt if "%_USE_CLASSPATH%"=="no" goto runAntNoClasspath if not "%CLASSPATH%"=="" goto runAntWithClasspath "%_JAVACMD%" %ANT_OPTS% -classpath "%ANT_HOME%\lib\ant-launcher.jar" "-Dant.home=%ANT_HOME%" org.apache.tools.ant.launch.Launcher %ANT_ARGS% %ANT_CMD_LINE_ARGS% goto end :runAntNoClasspath "%_JAVACMD%" %ANT_OPTS% -classpath "%ANT_HOME%\lib\ant-launcher.jar" "-Dant.home=%ANT_HOME%" org.apache.tools.ant.launch.Launcher %ANT_ARGS% %ANT_CMD_LINE_ARGS% goto end :runAntWithClasspath "%_JAVACMD%" %ANT_OPTS% -classpath "%ANT_HOME%\lib\ant-launcher.jar" "-Dant.home=%ANT_HOME%" org.apache.tools.ant.launch.Launcher %ANT_ARGS% -cp "%CLASSPATH%" %ANT_CMD_LINE_ARGS% goto end :runAntWithJikes if "%_USE_CLASSPATH%"=="no" goto runAntWithJikesNoClasspath if not "%CLASSPATH%"=="" goto runAntWithJikesAndClasspath :runAntWithJikesNoClasspath "%_JAVACMD%" %ANT_OPTS% -classpath "%ANT_HOME%\lib\ant-launcher.jar" "-Dant.home=%ANT_HOME%" "-Djikes.class.path=%JIKESPATH%" org.apache.tools.ant.launch.Launcher %ANT_ARGS% %ANT_CMD_LINE_ARGS% goto end :runAntWithJikesAndClasspath "%_JAVACMD%" %ANT_OPTS% -classpath "%ANT_HOME%\lib\ant-launcher.jar" "-Dant.home=%ANT_HOME%" "-Djikes.class.path=%JIKESPATH%" org.apache.tools.ant.launch.Launcher %ANT_ARGS% -cp "%CLASSPATH%" %ANT_CMD_LINE_ARGS% goto end :end set _JAVACMD= set ANT_CMD_LINE_ARGS= if "%OS%"=="Windows_NT" @endlocal if "%OS%"=="WINNT" @endlocal :mainEnd if exist "%HOME%\antrc_post.bat" call "%HOME%\antrc_post.bat"
最新技术文章: