Java загадочно сломалась на моем рабочем ПК после того, как исправление безопасности было вытолкнуто нам, давая эту ошибку всякий раз, когда вы пытались запустить Java-программу. Так или иначе, подкаталог «lib» установки Java 7 исчез! Возможно, это связано с тем, что одновременно установлено несколько версий Java.
Если вы получаете эту ошибку, есть две вещи, которые могут быть неправильными:
1) Ваша установка Java нарушена. Если файл/каталог, на который он жалуется, не существует, удалите и переустановите JRE, а затем он должен быть там. Это исправило это для меня.
2) Если файлы есть, ваш PATH каким-то образом неверен или указывает на старую/сломанную установку Java. В этом случае вам нужно либо исправить свой PATH, чтобы указать на правильный файл java.exe/javaw.exe, либо использовать полный путь. Поэтому вместо:
java <whatever>
Использование
c:<full path to correct JRE>binjava.exe <whatever>
3) Если ваш PATH правильный, и файлы там, и он все еще не работает, путь может быть усечен, потому что он слишком длинный. см.: Запуск Java дает» Ошибка: не удалось открыть `C:Program FilesJavajre6libamd64jvm.cfg ‘».
Тема: Проблема в лаунчере
-
10.08.2016, 10:38
#1
Проблема в лаунчере
Error: could not open `C:UsersNikitaAppDataRoaming.minecraftonlyja vaJavalibi386jvm.cfg’ Незнаю что делать
зарание спасибо
-
10.08.2016, 11:48
#2
EzgaC, Попробуй скачать Java 7, вот ссылка http://www.java.com/ru/download/
или же зайди в пуск напиши %appdata% зайди в папку Roaming удали папку MinecraftOnly
и скачать клиент/ Launcher заново вот ссылка http://minecraftonly.ru/download.htmlПоследний раз редактировалось EugeneTokarev; 10.08.2016 в 11:58.
-
10.08.2016, 11:56
#3
-
10.08.2016, 16:44
#4
Удали папку Java в .minecrafonly, а так же последуй совету игрока выше — установи Java 7.
-
10.08.2016, 21:10
#5
Большое спасибо
Информация о теме
Пользователи, просматривающие эту тему
Эту тему просматривают: 1 (пользователей: 0 , гостей: 1)
Ваши права
- Вы не можете создавать новые темы
- Вы не можете отвечать в темах
- Вы не можете прикреплять вложения
- Вы не можете редактировать свои сообщения
- BB коды Вкл.
- Смайлы Вкл.
- [IMG] код Вкл.
- HTML код Выкл.
Правила форума
Can anyone please tell me why I get the following error when I try to run my Java programs? The programs get compiled successfully but are not able to be run. I have already set the path of Java.
C:JavaServ>javac hello1.java
C:JavaServ>java hello1
Error: could not open C:Program FilesJavajre6libamd64jvm.cfg
asked Jan 29, 2012 at 5:10
1
Don’t think if this is a correct way…(perhaps proper installation of Java is a permanent solution)….but this is a trick..:)
Delete the “java.exe” file from “c:windows” and “c:windowssystem32″. That should fix it.
answered Jan 29, 2013 at 6:18
7
In case you get here and scroll this far down, the newer Oracle versions of Java x86 and probably also x64 are horribly broken. You may find that after removing all versions of Java, and even manually deleting all the versions you find in c:/program files/ and c:/program files (x86)/ that you still can’t properly run a fresh install of Java.
I’m here to tell you why, and how to fix it.
Go to C:Program FilesCommon Files and DELETE the Oracle directory. It has a version of Java underneath it inside a junction (symlink) that is sequestered away from all your other installs. Bastards.
Now, also go to System Properties -> Advanced -> Environment Variables and edit the PATH under System Variables. Find the place where the Oracle folder is referenced, and delete it. Close all your windows down, reboot to be extra sure if you want.
Install the JRE or JDK. Open a command prompt and type ‘java’ and if it comes up, you’re golden. If not, go back to the PATH variable and add «C:Program Files (x86)Javajdk1.8.0_221bin» or whatever looks right for your machine.
I hate Oracle.
answered Aug 22, 2019 at 21:42
Jason HughesJason Hughes
2,4321 gold badge10 silver badges10 bronze badges
3
this should be an internal file of JRE and in general you shouldn’t deal with it when you’re running/compiling java.
Here you can find an explanation of what exactly this file is intended for.
Bottom line, your Java installation is somehow corrupted, so as a first resort to resolve this issue, I suggest you to re-install jre.
You should ensure that you’re installing the right jre for your architecture.
Hope, this helps
answered Jan 29, 2012 at 5:47
Mark BramnikMark Bramnik
39.3k4 gold badges56 silver badges95 bronze badges
2
You can not Uninstall/Reinstall JRE if you are having this error.
That’s why because previous installation has copied 3 files namely Java.exe, Javaw.exe, javaws.exe in the c:/windows/system32 folder.
Simply go there and remove these files and download a fresh version of jre from oracle and install it. I will prefer JDK 1.6 update 45. Which is very stable.
answered Feb 3, 2014 at 9:45
Vaibhav JainVaibhav Jain
1,84925 silver badges35 bronze badges
0
Java mysteriously broke on my work PC after a security patch was pushed out to us, giving this error whenever you tried to run a Java program. Somehow the ‘lib’ subdirectory of the Java 7 install had vanished! It might have been related to having multiple Java versions installed simultaneously.
If you’re getting this error there are basically two things that could be wrong:
1) Your Java installation is broken. If the file/directory it’s complaining about doesn’t exist, uninstall and reinstall the JRE and then it should be there. This fixed it for me.
2) If the files are there, your PATH is somehow incorrect or pointing at an old/broken Java install. In this case you either need to fix your PATH to point to the correct java.exe/javaw.exe, or use a fully qualified path. So instead of:
java <whatever>
Use
c:<full path to correct JRE>binjava.exe <whatever>
3) If your PATH is correct and files are there and it’s still failing, the path could be getting truncated because it is too long. see: Running Java gives «Error: could not open `C:Program FilesJavajre6libamd64jvm.cfg'» .
answered Sep 24, 2013 at 18:03
1
i also had the same issue due to one more instance of java,javaw
and javaws
in C:WindowsSystem32
which was pointing to jre6
and my default location of jre was pointing to this(C:WindowsSystem32) location. Even having jdk 1.8 as my JAVA_HOME
location i were getting this problem.
so either remove or rename java,javaw and javaws it will work.
answered Feb 8, 2017 at 7:49
Piyush MittalPiyush Mittal
1,8501 gold badge21 silver badges39 bronze badges
0
If you have installer deployed Java on Windows and decided to bring some order to your JDKs with folders moving…
All answers with java.exe
in WindowsSystem32
are right but in more tough situation — there are no files, but error messages still happen, then remember about Windows Registry entries (look regedit.exe
).
They store information about JRE folder in this registry key:
win32:
HKEY_LOCAL_MACHINESOFTWAREJavaSoftJava Runtime Environment
win64:
HKEY_LOCAL_MACHINESOFTWAREWow6432NodeJavaSoftJava Runtime Environment
answered May 24, 2019 at 12:19
rookrook
5,8004 gold badges39 silver badges51 bronze badges
The program can be compiled but while running it leads to such an error:
Could not open C:Program FilesJavajre6libamd64jvm.cfg
It indicates that the jvm.cfg file is missing in Program files. Reasons may be file corruption or file may be deleted. Install JRE again in «Program Files» folder.
Another case which happened with me is that I installed 32 bit jdk & jre in my 64 bit system in Program Files(x86) and my Program Files folder was empty. That was the reason for that error. So I installed 64 bit JRE in Program Files folder and it started to work. Note that it is not related to jdk version. Associated with only JRE problem.
j0k
22.5k28 gold badges79 silver badges89 bronze badges
answered Sep 24, 2012 at 17:19
0
I was getting the same error with my docear program on windows 7.
What I found is that I had two instances of java 1.6 installed on my computer. One instance has a jvm.cfg and the other does not.
Modifying my path to search the correct instance of java (in bold) first fixed the problem.
Here is my corrected path:
C:Userskranjit>path
PATH=C:Windowssystem32;C:Windows;C:WindowsSystem32Wbem;C:WindowsSystem32
WindowsPowerShellv1.0;C:Program Files (x86)Enterprise VaultEVClient;C:Program FilesJavajre6bin;C:Program Files (x86)Javajre6bin;
j0k
22.5k28 gold badges79 silver badges89 bronze badges
answered Dec 30, 2012 at 13:55
In our system, for «java(jre)» for runtime purpose is availed, So If you install any different version of java, propbably the version before the one which is already installed.
E.g.; my windows 8.1 I have runtime java version of 8, then when I install Ver7 it is bu default taking V8, yet I uninstall 8, In this kind of Scenarios, Removing java.exe from c:windowssystem32 makes my java runtime work
answered Jan 4, 2014 at 16:00
For anyone still having an issue I made mine work by doing this probably not the best fix but it worked for me..
I uninstalled all Java’s that i current had installed, reinstalled the latest one and changed the install directory to C:/Windows/jre (Basically where it kept saying there was no config file)
answered Aug 16, 2017 at 2:57
I want to add some pointers here.
Whenever you face the error saying Could not open jvm.cfg
, it means that there was some mess happened with java installation path
. Below approaches might help.
-
If java is added in environment path, then open command prompt and type
where java
. If you get list of directories where java path specified. Other than the directory where you need the java file, delete the java files in all other directories. -
If you are reading 2nd pointer, then 1st pointer might have not helped. Type
regedit
in run dialog and underHKEY_LOCAL_MACHINE
, go tosoftwares/javasoft
and rename the paths of the java installed directory.
Let me know if above approaches solve the problem.
Agilanbu
2,7472 gold badges28 silver badges33 bronze badges
answered Dec 14, 2018 at 10:33
-
The simple Solution is just
uninstall
thejavaSE
andreinstall
it to the default location. -
Then copy the installed location probably like
C:Program FilesJavajdk1.8.0_131bin
. -
After then go to desktop then while selecting right click on
My Pc or This pc shortcut
the under that selectproperties >> Advanced system settings >> under Advance tab >> last option Environment Variables..>>path >> edit >> past >> ;
(not required if win10)/(required if windows 7)
Agilanbu
2,7472 gold badges28 silver badges33 bronze badges
answered Jun 14, 2017 at 5:47
I had this issue when installing 201, somehow it didn’t uninstall my 191 properly. I had to go to the Program Files/Java folder, rename the old 201 directory, then install a fresh copy of 201. When doing so, it prompted me to uninstall 191, which I did. Now it’s working fine.
answered Feb 26, 2019 at 22:01
ShygarShygar
1,1739 silver badges10 bronze badges
I was facing the same issue after upgrading my java version.I had more than one jdk installation. I have manually uninstalled the old jdk version . Then it worked for me.
answered Mar 26, 2019 at 14:34
Resolved
I had similar issue, I tried different things but nothing worked. Then when I checked the installed programs. I could see two versions of java installed.
What I did is, just uninstall all java versions and freshly installed the required version. But this didn’t seem to work when I checked in terminal. Then I had to reopen the terminal and run the command, then only it worked.
Note : Dont forget to reopen the terminal if you are testing via terminal.
answered Aug 21, 2020 at 8:21
jithin johnjithin john
5424 silver badges12 bronze badges
I had an identical error trying to start IntellJ with a custom JBR.
C:Usersuser>"C:Program FilesJetBrainsIntelliJ IDEA Community Edition 2021.3.3binidea.bat"
Error: could not open `C:Program FilesJetBrainsIntelliJ IDEA Community Edition 2021.3.3jbr-arm64libjvm.cfg'
This issue may occur if there were problems extracting Java or OpenJDK from a zip or tarball (e.g. a slow extraction was terminated prematurely) or if the zip or tarball was corrupted or incomplete.
-
If caused by a corrupted zip or tarball, try redownloading the archive.
-
If caused by a bad extraction, repeating the extraction will fix this.
answered Sep 2, 2022 at 2:55
tresftresf
6,8545 gold badges39 silver badges99 bronze badges
Copying and pasting i386jvm.cfg
from a different PC will resolve the issue.
Adam Michalik
9,63713 gold badges67 silver badges102 bronze badges
answered Dec 2, 2015 at 14:55
2
I had the same issue.I just uninstalled Java and reinstalled again it worked fine after that . The problem is related to JRE so you can just reinstall JRE.
answered Jul 22, 2017 at 5:37
0
I had same problem — when I tried to run a Java program from command line the error message appeared: «Error: could not open jvm.cfg».
My Path environment variable included following path:
C:ProgramDataOracleJavajavapath
In the folder there were 3 exe files:
java.exe
javaw.exe
javaws.exe
When I removed the the entry
C:ProgramDataOracleJavajavapath
from the Path environment variable and restarted cmd, I could run the program as usual (java MyProg).
Obviously I have corrupted the path pointing to correct java jre installation
C:Program FilesJavajre1.8.0_151
somehow previously when I played with my settings.
answered Jan 6, 2018 at 21:39
0
It means that this jvm.cfg
file is not found. Maybe it was deleted. Reinstall
the program. If you have this problem with a game for example, reinstall Java
in the games folder, or copy Java files .de c:/Program Files/JAVA
and paste to the JAVA
folder in the game folder
Agilanbu
2,7472 gold badges28 silver badges33 bronze badges
answered Jan 31, 2016 at 19:20
If you are facing the error could not open jvm.cfg then do not worry. It has a simple but weird fix.
I faced the same issue when I tried to run a simple java program. I was using the jdk8. The interesting fact was that the program compiled successfully. But when I was executing the java program then it was giving Error: could not open C:Program FilesJavajre8libamd64jvm.cfg.
Read Also: Could not find or load main class
In short, below is the scenario
C:JavaHungry>javac SimpleProgram.java
C:JavaHungry>java SimpleProgram
Error: could not open C:Program FilesJavajre8libamd64jvm.cfg
Let’s find out the solution/fix.
Fixed- Error: could not open C:Program FilesJavajre8libamd64jvm.cfg
1. Go to below folder
C:WindowsSystem32
2. Remove below files from this folder
java.exe,
javaw.exe,
javaws.exe
3. Run the program again, voila, the error is resolved.
If the above problem does not resolve even after deleting the .exe files, then, try this
2. PATH is not correct
1. Put below the line at the beginning of the PATH.
%JAVA_HOME%bin
voila, the error is resolved.
If the above problem still persists, then
3. Remove Oracle directory executable files
Check the below directory
C:Program FilesCommon FilesOracle
and remove the java related executables.
voila, the error is resolved.
If you are reading this line it means, you are still facing this annoying error. So the last trick is
4. Uninstall Java, Remove references to it from Registry and Reinstall it
That should do it.
That’s all for today, please let me know in comments which of the above 4 methods solved the error: Could not open C:Program FilesJavajre8libamd64jvm.cfg.
Может кто-нибудь сказать мне, почему я получаю следующую ошибку при попытке запустить мои программы Java? Программы успешно скомпилированы, но не могут быть запущены. Я уже установил путь Java.
C:JavaServ>javac hello1.java
C:JavaServ>java hello1
Error: could not open C:Program FilesJavajre6libamd64jvm.cfg
2012-01-29 05:10
23
ответа
Решение
Это должен быть внутренний файл JRE, и, как правило, вы не должны иметь с ним дело, когда запускаете / компилируете java.
Здесь вы можете найти объяснение того, для чего предназначен этот файл. В итоге ваша установка Java как-то повреждена, поэтому в качестве первого средства для решения этой проблемы я предлагаю вам переустановить jre.
Вы должны убедиться, что вы устанавливаете правильный JRE для вашей архитектуры.
Надеюсь это поможет
2012-01-29 05:47
Не думайте, что это правильный путь…(возможно, правильная установка Java — это постоянное решение)…. но это хитрость..:)
Удалите файл «java.exe» из «c:windows» и «c:windowssystem32″. Это должно исправить это.
2013-01-29 06:18
Если вы дойдете сюда и прокрутите это далеко вниз, новые версии Oracle Java x86 и, вероятно, также x64 ужасно сломаны. Вы можете обнаружить, что после удаления всех версий Java и даже ручного удаления всех версий, которые вы найдете в c:/program files/ и c:/program files (x86)/, вы по-прежнему не можете правильно запустить новую установку Java..
Я здесь, чтобы рассказать вам, почему и как это исправить.
Перейдите в C:Program FilesCommon Files и УДАЛИТЕ каталог Oracle. У него есть версия Java под ним внутри соединения (символическая ссылка), которая изолирована от всех ваших других установок. Ублюдки.
Теперь также перейдите в Свойства системы -> Дополнительно -> Переменные среды и отредактируйте ПУТЬ в разделе Системные переменные. Найдите место, где есть ссылка на папку Oracle, и удалите ее. Закройте все окна, перезагрузитесь, чтобы быть уверенным, если хотите.
Установите JRE или JDK. Откройте командную строку и введите «java», и если она появится, вы — золотой. Если нет, вернитесь к переменной PATH и добавьте «C:Program Files (x86)Javajdk1.8.0_221bin» или что-то еще, что подходит для вашей машины.
Я ненавижу Oracle.
2019-08-23 00:42
Вы не можете удалить / переустановить JRE, если у вас возникла эта ошибка. Вот почему, поскольку предыдущая установка скопировала 3 файла, а именно Java.exe, Javaw.exe, javaws.exe в папку c:/windows/system32. Просто зайдите туда, удалите эти файлы и загрузите свежую версию jre из oracle и установите ее. Я предпочитаю JDK 1.6 обновление 45. Что очень стабильно.
2014-02-03 09:45
У меня также была та же проблема из-за еще одного случая java,javaw
а также javaws
в C:WindowsSystem32
который указывал на jre6
и мое местоположение jre по умолчанию указывало на это местоположение (C:WindowsSystem32). Даже имея jdk 1.8 как мой JAVA_HOME
место я получаю эту проблему. так что либо удалите, либо переименуйте java, javaw и javaws это будет работать.
2017-02-08 07:49
Java загадочным образом сломалась на моем рабочем компьютере после того, как нам было выпущено исправление безопасности, которое выдает эту ошибку при каждой попытке запустить программу на Java. Каким-то образом подкаталог ‘lib’ установки Java 7 исчез! Возможно, это связано с одновременной установкой нескольких версий Java.
Если вы получаете эту ошибку, есть две вещи, которые могут ошибаться:
1) Ваша установка Java не работает. Если файл / каталог, на который он жалуется, не существует, удалите и переустановите JRE, и он должен быть там. Это исправило это для меня.
2) Если файлы есть, ваш PATH как-то неверен или указывает на старую / неработающую установку Java. В этом случае вам нужно либо исправить свой путь PATH, чтобы он указывал на правильный файл java.exe/javaw.exe, либо использовать полный путь. Так что вместо:
java <whatever>
использование
c:<full path to correct JRE>binjava.exe <whatever>
3) Если ваш PATH правильный, а файлы есть и он все еще не работает, путь может быть усечен, потому что он слишком длинный. см.: Запуск Java выдает «Ошибка: не удалось открыть` C: Program Files Java jre6 lib amd64 jvm.cfg ‘».
2013-09-24 18:03
Если у вас установщик развернул Java на Windows и решил навести порядок в своих JDK с перемещением папок…
Все ответы с java.exe
в WindowsSystem32
правы, но в более сложной ситуации — нет файлов, но сообщения об ошибках по-прежнему возникают, затем помните о записях реестра Windows (посмотрите regedit.exe
).
Они хранят информацию о папке JRE в этом разделе реестра:
win32:HKEY_LOCAL_MACHINESOFTWAREJavaSoftJava Runtime Environment
win64:HKEY_LOCAL_MACHINESOFTWAREWow6432NodeJavaSoftJava Runtime Environment
2019-05-24 12:19
Программа может быть скомпилирована, но во время работы она приводит к такой ошибке:
Не удалось открыть C:Program FilesJavajre6libamd64jvm.cfg
Это указывает на то, что в программных файлах отсутствует файл jvm.cfg. Причины могут быть повреждение файла или файл может быть удален. Установите JRE снова в папке «Program Files».
Другой случай, который произошел со мной, это то, что я установил 32-битный jdk & jre в моей 64-битной системе в Program Files(x86), а папка Program Files была пуста. Это было причиной этой ошибки. Поэтому я установил 64-битную JRE в папку Program Files, и она начала работать. Обратите внимание, что это не связано с версией JDK. Связано только с проблемой JRE.
2012-09-24 17:19
Простое решение — просто удалить javaSE и переустановить его в папку по умолчанию…!. Затем скопируйте установленное местоположение, вероятно, как «C:Program FilesJavajdk1.8.0_131bin» . После этого перейдите на рабочий стол, затем при выборе правого клика на «Мой ПК или ярлык на этом компьютере» в разделе «Свойства» выберите «Дополнительные параметры системы» >> на вкладке «Дополнительно» >> последний параметр «Переменные среды». >> Путь >> Редактировать >> «Прошлое»; требуется, если win10)/(требуется, если windows 7)
2017-06-14 05:47
Я столкнулся с той же проблемой после обновления моей версии Java. У меня было более одной установки JDK. Я вручную удалил старую версию JDK. Тогда это сработало для меня.
2019-03-26 14:34
У меня была эта проблема при установке 201, как-то не удалялась моя 191 должным образом. Мне пришлось перейти в папку Program Files/Java, переименовать старый каталог 201, а затем установить свежую копию 201. При этом мне было предложено удалить 191, что я и сделал. Теперь работает нормально.
2019-02-26 22:01
В нашей системе для «java(jre)» для целей времени исполнения имеется возможность, поэтому, если вы устанавливаете любую другую версию java, вероятно, версию, предшествующую той, которая уже установлена.
Например; у меня windows 8.1 у меня java-версия времени выполнения 8, затем при установке Ver7 по умолчанию беру V8, но я деинсталлирую 8. В сценариях такого рода удаление java.exe из c:windowssystem32 делает мою java-среду выполнения работающей
2014-01-04 16:00
Для тех, у кого все еще есть проблема, я заставил свою работу сделать это, вероятно, не лучшее решение, но оно сработало для меня..
Я удалил все Java, которые я установил в настоящий момент, переустановил последний и изменил каталог установки на C:/Windows/jre (в основном там, где он говорил, что не было никакого конфигурационного файла)
2017-08-16 02:57
Я получал ту же ошибку с моей программой docear на Windows 7.
Я обнаружил, что на моем компьютере было установлено два экземпляра Java 1.6. Один экземпляр имеет jvm.cfg, а другой нет.
Изменение моего пути для поиска правильного экземпляра Java (выделено жирным шрифтом) сначала решило проблему.
Вот мой исправленный путь:
C: Users kranjit> путь PATH = C: Windows system32; C: Windows; C: Windows System32 Wbem; C: Windows System32 WindowsPowerShell v1.0 ; C: Program Files (x86) Enterprise Vault EVClient ;C: Program Files Java jre6 bin; C: Program Files (x86) Java jre6 bin;
2012-12-30 13:55
Решено
У меня была аналогичная проблема, я пробовал разные вещи, но ничего не получалось. Потом когда проверил установленные программы. Я видел две установленные версии java.
Я просто удалил все версии java и заново установил требуемую версию. Но это не сработало, когда я зарегистрировался в терминале. Затем мне пришлось снова открыть терминал и запустить команду, только тогда она сработала.
Примечание: не забудьте повторно открыть терминал, если вы тестируете через терминал.
2020-08-21 11:21
Я хочу добавить несколько указателей здесь.
Всякий раз, когда вы сталкиваетесь с ошибкой, говоря Could not open jvm.cfg
, это означает, что произошел какой-то беспорядок с java installation path
, Ниже могут помочь подходы.
-
Если Java добавлен в путь к среде, откройте командную строку и введите
where java
, Если вы получите список каталогов, где указан путь Java. Кроме каталога, в котором вам нужен файл Java, удалите файлы Java во всех других каталогах. -
Если вы читаете 2-й указатель, то 1-й указатель, возможно, не помог. Тип
regedit
в диалоге запуска и подHKEY_LOCAL_MACHINE
, идти кsoftwares/javasoft
и переименуйте пути к установленному каталогу Java.
Дайте мне знать, если вышеуказанные подходы решат проблему.
2018-12-14 10:33
У меня была идентичная ошибка при попытке запустить IntelJ с пользовательским JBR.
C:Usersuser>"C:Program FilesJetBrainsIntelliJ IDEA Community Edition 2021.3.3binidea.bat"
Error: could not open `C:Program FilesJetBrainsIntelliJ IDEA Community Edition 2021.3.3jbr-arm64libjvm.cfg'
Эта проблема может возникнуть, если возникли проблемы с извлечением Java или OpenJDK из ZIP-архива или tar-архива (например, медленное извлечение было преждевременно завершено) или если zip-архив или tar-архив были повреждены или неполны.
-
Если это вызвано повреждением zip-файла или tar-архива, попробуйте повторно загрузить архив.
-
Если это вызвано неправильным извлечением, повторение извлечения исправит это.
2022-09-02 02:55
У меня была та же проблема. Я просто удалил Java и переустановил снова, после этого все работало нормально. Проблема связана с JRE, поэтому вы можете просто переустановить JRE.
22 июл ’17 в 05:37
2017-07-22 05:37
2017-07-22 05:37
У меня была такая же проблема — когда я пытался запустить программу Java из командной строки, появлялось сообщение об ошибке: «Ошибка: не удалось открыть jvm.cfg». Переменная окружения My Path включает следующий путь:
C:ProgramDataOracleJavajavapath
В папке было 3 exe файла:
java.exe
javaw.exe
javaws.exe
Когда я удалил запись
C:ProgramDataOracleJavajavapath
из переменной среды Path и перезапускаемого cmd я мог запустить программу как обычно (java MyProg). Очевидно, я повредил путь, указывающий на правильную установку java jre
C:Program FilesJavajre1.8.0_151
как-то раньше, когда я играл с моими настройками.
2018-01-06 21:39
Копирование и вставка i386jvm.cfg
с другого компьютера решит проблему.
2015-12-02 14:55
Это означает, что этот файл «jvm.cfg» не найден. Возможно это было удалено. Переустановите программу. Если у вас возникла такая проблема, например, с игрой, переустановите Java в папке с играми или скопируйте файлы Java.de c:/Program Files/JAVA и вставьте в папку JAVA в папке с игрой.
2016-01-31 19:20
Другие вопросы по тегам
java