建议按以下方法查看是什么原因造成的并解决:
1、程序缓存过多:在手机设置--应用程序--全部--找到出现停止运行的程序--清理数据;(大部分手机都可以通过此方法解决的)。
2、手机内存过低:系统运行程序多,内存不足,在设置—应用程序—正在运行,关闭其他后台运行程序。
3、安装位置不对:进入设置--储存--首选安装位置--由系统决定,更改储存位置。
4、程序不兼容:建议卸载重新安装该程序或卸载了一些与系统不兼容的程序。
5、程序本身问题:有些程序本身存在问题,如前期腾讯组件出现问题,导致腾讯游戏出现停止运行的提示。(这种情况可通过多台不同品牌机器对比得出结论)
6、若排除以上方法后仍出现停止运行的情况,建议恢复出厂设置,或者重刷固件。
你是jboss部署java程序的?
正常情况下,我建议你直接回传你的war包,然后用解压缩软件进行解压。将需要编辑的文件编辑之后,再放回war包的对应目录下就可以了。
然后将修改之后的war包重新上传至liunx服务器上,注意上传后文件包的权限问题。
下载安装下载
需要设置的环境变量
ANT_HOME ant的安装目录
JAVA_HOME jdk的安装目录
PATH 把%ANT_HOME%\bin目录加到path变量 以便于从命令行下直接运行ant
假定ant解压在c \ant jdk装d \j sdk
则在命令行下执行以下命令
set ANT_HOME=c:\antset JAVA_HOME=D:\j sdk set PATH=%PATH%;c:\ant\bin
工程文件目录结构
一个ant 工程目录结构
C \workspace\ant test 工程主目录
\src 源程序目录
\build\classes 编译后的 class 文件目录
\lib 开发工程所需要的类库目录 比如开发数据库时所需要的 jdbc lib(这次没用到)
\jar 打包好的 jar 程序目录(这次没用到)
\build xml 工程配置文件\build propertiees 工程资源文件
建立工程描述文件和建立工程资源文件
建立工程描述文件build xml
<xml version= ><project default= main basedir= > <echo message= pulling in property files /> <property file= build properties /> <target name= init > <echo message= init delete the old class files and create the new folds /> <delete dir= ${classpath} /> <mkdir dir= ${classpath} /> </target> <target name= pile depends= init > <echo message= pile the java source files /> <javac srcdir= src\hello\ant destdir= ${classpath} /> </target> <target name= main depends= pile > <echo message= calling java to run this java project /> <java classname= hello ant HelloAnt > <classpath> <pathelement path= ${classpath} /> </classpath> </java> </target></project>
建立工程资源文件 build properties
文件内容是下面一行内容
classpath=build\\classes
建立java源文件 hello ant HelloAnt java
package hello ant;public class HelloAnt { public static void main(String[] args) { System out println( hello ant the first time using ant it is great ); }}
编译
lishixinzhi/Article/program/Java/ky/201311/28515
以上就是关于antmessenger点了更新以后一直闪退全部的内容,包括:antmessenger点了更新以后一直闪退、使用Apache ant 解压远程linux服务器种某个目录下的一个war包,运行时报找不到jar命令:、Ant的配置使用入门等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)