• 締切済み

flexの導入について

先日、興味本位でflex 2をインストールしました。 mxmlcコマンドを使ってコンパイルしようとすると 『Error: could not find a JVM』 と表示されてコンパイルできません。 おそらくflex_sdk_2\bin\jvm.configの内容が不十分だと思います。ただ、どのように修正すればいいのか分からないので教えてください。 以下flex_sdk_2\bin\jvm.configの中身 # # VM configuration # # Where to find JVM, if {java.home}/jre exists then that JVM is used # if not then it must be the path to the JRE itself # # If no java.home is specified a VM is located by looking in these places in this # order: # # 1) JAVA_HOME environment variables (same rules as java.home above) # 2) bin directory for java.dll (windows) or lib/<ARCH>/libjava.so (unix) # 3) ../jre # 4) registry (windows only) # java.home= # Arguments to VM java.args=-Xmx384m -Dsun.io.useCanonCaches=false # Environment variables we care about, whitespace-separated env= # java.class.path - use this for adding individual jars or # directories. When directories are included they will be searched # for jars and zips and they will be added to the classpath (in # addition to the directory itself), the jar to be used in launching # will be appended to this classpath java.class.path= # # where to find shared libraries, again use commas to separate entries java.library.path=

みんなの回答

noname#86752
noname#86752
回答No.1

私も最近入れてみたのですが、そのファイルは同じ内容です。 確認して欲しいのは 1.JavaSDKがインストールされている 2.JAVA_HOME/binにパスが通っている。 以上2点です。これが問題ないならコンパイルできると思います。 (私は何かやった記憶がないので・・・)

motipan
質問者

お礼

パスはC:\j2sdk1.4.2_14\bin; JAVASDKはC:\j2sdk1.4.2_14にあります。 実際javacコマンドが使えるのでパスは通ってると思うんですが… 他に原因があればご指摘お願いします。

motipan
質問者

補足

インストールしなおしたら少し進展したので補足します。 C:\fs>mxmlc HelloWorld.as Exception in thread "main" java.util.zip.ZipException: 指定されたファイルが見つ かりません。 at java.util.zip.ZipFile.open(Native Method) at java.util.zip.ZipFile.<init>(ZipFile.java:111) at java.util.jar.JarFile.<init>(JarFile.java:127) at java.util.jar.JarFile.<init>(JarFile.java:65) って出ました。これはjavaがおかしいのでしょうか?

関連するQ&A