Redian新闻
>
[提问] The JVM could not be started
avatar
[提问] The JVM could not be started# Java - 爪哇娇娃
z*3
1
一个会说腹语的女人他制作的玩偶被男孩质疑是假的!女人为了惩罚那男孩,最终杀掉了那男孩,将他制成木偶。村里人知道男孩失踪后怀疑这个会腹语的女人最后将其舌头割掉,并杀死,将木偶与她一起埋葬。
这是一部叫《死寂》的电影,这女人生前制作一个完美人偶,一个死物怎么才能拥有灵魂呢。这木偶居然利用了男主角的母亲的怨气,从而控制了她帮助老女人的恶灵制造一个计划。
最终这完美木偶利用男主角发现真相而尖叫的效果将其杀死。而完美木偶则利用男主角的好奇将老女人附体的木偶完全毁掉,最终这老女人的灵魂不得不借助这个完美木偶。
从而完美木偶终于获得灵魂。这是什么造成的?
因为人的猜忌和不信任,造成悲剧,而悲剧将人的性格扭曲,扭曲的性格阴魂不散,它像病毒一样随处散播,就像电影里一样,那个女人的恶灵可以附着在任何玩偶内。这病毒的传播最后祸及到你我!
你看到大街上的流浪猫了吗,如果你的爱能传给它,它或许可以活的更好。就像负面情绪一样,它一样可以传染,你的消沉或许会杀死一个健康的人!
猫可以慵懒的躲在车底下睡觉,狗可以跟着主人遛弯,我们能跟着自己的感觉走吗?我们的身体其实也是一具木偶,看你需要什么样的情绪了?!
avatar
i*l
2
打开一个java的做的软件,直接报错:
The JVM could not be started. The main method may have thrown an exception
VM参数也修改为-Xms512m -Xmx1024m了,但还是不OK。
请问这是什么原因造成的呢?
avatar
w*s
3
啊,main method不是有个异常了嘛
是什么?

【在 i****l 的大作中提到】
: 打开一个java的做的软件,直接报错:
: The JVM could not be started. The main method may have thrown an exception
: VM参数也修改为-Xms512m -Xmx1024m了,但还是不OK。
: 请问这是什么原因造成的呢?

avatar
i*l
4
main method的异常就是:Out of memory
软件自带的Log文件夹里面没有任何Log文件

【在 w*******s 的大作中提到】
: 啊,main method不是有个异常了嘛
: 是什么?

avatar
g*g
5
Out of Memory should have a stack, check what you are
allocating when that occurs. Most likely you have a
dead iteration.

【在 i****l 的大作中提到】
: main method的异常就是:Out of memory
: 软件自带的Log文件夹里面没有任何Log文件

avatar
i*l
6
那个软件是买的,不是我写的

【在 g*****g 的大作中提到】
: Out of Memory should have a stack, check what you are
: allocating when that occurs. Most likely you have a
: dead iteration.

avatar
s*n
7
why not ask the seller then?
try smaller -Xms and -Xmx?

【在 i****l 的大作中提到】
: 那个软件是买的,不是我写的
avatar
i*l
8
The default value is the smaller,24m/256m,but it doesn't work,so I modify
them.
I don't know how to contact the seller...

【在 s******n 的大作中提到】
: why not ask the seller then?
: try smaller -Xms and -Xmx?

avatar
w*s
9
能不能贴全一点的log?

modify

【在 i****l 的大作中提到】
: The default value is the smaller,24m/256m,but it doesn't work,so I modify
: them.
: I don't know how to contact the seller...

avatar
m*o
10
这样的软件业卖的出去啊?
你是怎么启动?有个.exe文件还是.bat文件?可能的话加上-verbose?

【在 i****l 的大作中提到】
: 那个软件是买的,不是我写的
avatar
s*n
11
maybe increase -XX:MaxPermSize

modify

【在 i****l 的大作中提到】
: The default value is the smaller,24m/256m,but it doesn't work,so I modify
: them.
: I don't know how to contact the seller...

avatar
i*l
12
没有全的log,只有一个报错框

【在 w*******s 的大作中提到】
: 能不能贴全一点的log?
:
: modify

avatar
i*l
13
启动是.exe,里面会调用很多的.bat文件,.bat里面有java的VM的设置
我单独执行.exe文件就报上面我截图的那个错误,如果不使用那个.exe的话,尝试把所
有.bat连接起来执行,我搞不定

【在 m******o 的大作中提到】
: 这样的软件业卖的出去啊?
: 你是怎么启动?有个.exe文件还是.bat文件?可能的话加上-verbose?

avatar
i*l
14
I tried yesterday, but it didn't work...

【在 s******n 的大作中提到】
: maybe increase -XX:MaxPermSize
:
: modify

avatar
u*s
15
open a DOS prompt, run the .exe file from there, you may get something from
stdout/stderr

【在 i****l 的大作中提到】
: 启动是.exe,里面会调用很多的.bat文件,.bat里面有java的VM的设置
: 我单独执行.exe文件就报上面我截图的那个错误,如果不使用那个.exe的话,尝试把所
: 有.bat连接起来执行,我搞不定

avatar
m*o
16
Find the .bat file that has xxx/java -D xxx something like that, insert -
verbose in that line and then try run the .exe from a dos window.
You might already have some kind of logs generated somewhere. Try use a
search tool (I like Agent Ransack) to find out any files that are generated
after the time you run the exe file.

【在 i****l 的大作中提到】
: 启动是.exe,里面会调用很多的.bat文件,.bat里面有java的VM的设置
: 我单独执行.exe文件就报上面我截图的那个错误,如果不使用那个.exe的话,尝试把所
: 有.bat连接起来执行,我搞不定

avatar
i*l
17
thanks, but JVM is not started, so it's no use to add the option -verbose

generated

【在 m******o 的大作中提到】
: Find the .bat file that has xxx/java -D xxx something like that, insert -
: verbose in that line and then try run the .exe from a dos window.
: You might already have some kind of logs generated somewhere. Try use a
: search tool (I like Agent Ransack) to find out any files that are generated
: after the time you run the exe file.

avatar
i*l
18
IDEA也有过同样的Issue...// http://devnet.jetbrains.net/docs/DOC-1185
On some systems the error in subject occurs when trying to run IDEA. It
happens because the native idea.exe executable built with the exe4j uses the
splash screen which loads a dll (to decode the splash image) in the address
space of the process. The jvm.dll loaded after the splash needs to allocate
the heap memory in one chunk, however the dll loaded before the jvm.dll can
fragment the address space (limited to 2GB for the 32-bit ap
avatar
c*c
19
你的系统内存多少,如果你的free内存少于512M的话,Java会直接报错

【在 i****l 的大作中提到】
: 打开一个java的做的软件,直接报错:
: The JVM could not be started. The main method may have thrown an exception
: VM参数也修改为-Xms512m -Xmx1024m了,但还是不OK。
: 请问这是什么原因造成的呢?

avatar
F*n
20
Could be a problem of JVM version. Did the software use its own version or
it just used whatever JVM it finds in your system?

【在 i****l 的大作中提到】
: 打开一个java的做的软件,直接报错:
: The JVM could not be started. The main method may have thrown an exception
: VM参数也修改为-Xms512m -Xmx1024m了,但还是不OK。
: 请问这是什么原因造成的呢?

avatar
g*g
21
I would simply contact the vendor for support if I pay and
the software doesn't run.
avatar
i*l
22
我的电脑XP是系统,4G内存只有3G是available,但是一般情况下也有1.5G是free的

【在 c*c 的大作中提到】
: 你的系统内存多少,如果你的free内存少于512M的话,Java会直接报错
avatar
i*l
23
确实。这个软件有一个.bat文件,主要用来判断使用哪个JAVA PATH,如果系统环境变
量设置了JAVA PATH,软件就使用这个,否则使用软件自带的JAVA PATH。我已经删除了
系统环境变量自己设置的JAVA PATH,但是还是不OK.

【在 F****n 的大作中提到】
: Could be a problem of JVM version. Did the software use its own version or
: it just used whatever JVM it finds in your system?

avatar
i*l
24
Maybe I should try to contact the vendor.

【在 g*****g 的大作中提到】
: I would simply contact the vendor for support if I pay and
: the software doesn't run.

avatar
m*t
25

It's a funny thing if you think about it - if somebody buys
a car and can't even drive it off the lot, they'd ask whoever
sold them the car instead of asking on the Internet "how
do I mod the car so it'll drive?"

【在 g*****g 的大作中提到】
: I would simply contact the vendor for support if I pay and
: the software doesn't run.

avatar
i*l
26
昨天把系统的JVM runtime parameter修改了还是不work
今天给美国人发邮件说明了情况,他问我版本,我点击那个软件看版本,结果发现能用了
which indeed surprised me,这个JVM问题困惑了我一周!
仔细想了一下,我今天什么都没做,只是今早restart一下电脑,也许昨天修改的系统
参数生效了
谢谢大家给我的回复!
相关阅读
logo
联系我们隐私协议©2024 redian.news
Redian新闻
Redian.news刊载任何文章,不代表同意其说法或描述,仅为提供更多信息,也不构成任何建议。文章信息的合法性及真实性由其作者负责,与Redian.news及其运营公司无关。欢迎投稿,如发现稿件侵权,或作者不愿在本网发表文章,请版权拥有者通知本网处理。