ESPlorer icon indicating copy to clipboard operation
ESPlorer copied to clipboard

Crash when press Open for serial connection

Open netstrike opened this issue 7 years ago • 37 comments

Today... when i have installed the JDK 9.0 ESplorer crash everytime ....

hs_err_pid5988.log

netstrike avatar Oct 13 '17 10:10 netstrike

Its problem jSSC-2.8_x86_64.dll jSCC library

4refr0nt avatar Oct 13 '17 12:10 4refr0nt

Can confirm. Would you be able to fix this or do we have to roll back to JDK8?

d-rez avatar Oct 23 '17 12:10 d-rez

Confirming Esplorer is broken on windows 10 with jdk 9.

RouterBox avatar Oct 28 '17 22:10 RouterBox

I can't fix jSCC library, try roll back to JDK8

4refr0nt avatar Oct 28 '17 22:10 4refr0nt

Having the same problem on win 10 with jdk 9

FUTC-Coding avatar Dec 22 '17 22:12 FUTC-Coding

same

CyanoFresh avatar Dec 25 '17 16:12 CyanoFresh

Roll back to JDK 8. Fixed it for me.

RouterBox avatar Dec 25 '17 17:12 RouterBox

good jobs all above

wildfire810 avatar Jun 02 '18 01:06 wildfire810

@4refr0nt, just a heads-up that the same behaviour is exhibited by Java 10. Since it's been broken for 2 Java versions would you be able to work around this somehow?

d-rez avatar Jun 23 '18 09:06 d-rez

Same for Java 11.

fribeiro1 avatar Dec 21 '18 22:12 fribeiro1

I guess the dev doesn't care anymore, but you can install jdk8 alongside newer ones and then just modify the path to Java executable in the .bat file to point towards jdk8 directly.

OS will use jdk11 and app will use jdk8

d-rez avatar Dec 22 '18 05:12 d-rez

In case it helps anyone, here's a modified batch file that targets the current-as-of-today JRE 8. The included batch file wasn't working for me anyway until I included the "%~dp0" to give Java the full path to the jar.

"C:\Program Files\Java\jre1.8.0_201\bin\java.exe" -jar "%~dp0\ESPlorer.jar" 

davidhbrown avatar Apr 08 '19 03:04 davidhbrown

Mentioned the above absolute path but it didn't works what is the reason

kabilramar avatar Apr 23 '19 09:04 kabilramar

@kabilramar, Well, that was a couple weeks ago... JRE 8 is now up to version 211 and/or 212, so your best bet would be to poke around in your Program Files\Java folder and see which version you do have.

davidhbrown avatar Apr 23 '19 20:04 davidhbrown

Got it when I down graded to jdk 1.8 On Apr 24, 2019 1:50 AM, "David Brown" [email protected] wrote:

@kabilramar https://github.com/kabilramar, Well, that was a couple weeks ago... JRE 8 is now up to version 211 and/or 212, so your best bet would be to poke around in your Program Files\Java folder and see which version you do have.

— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/4refr0nt/ESPlorer/issues/63#issuecomment-485958994, or mute the thread https://github.com/notifications/unsubscribe-auth/AFYYJWMXPUCL6HCPRNVNAC3PR5VQDANCNFSM4D7BCMLA .

kabilramar avatar Apr 24 '19 01:04 kabilramar

Thank you and what are the firmwares to be downloaded for flashing in nodemcu

kabilramar avatar Apr 24 '19 03:04 kabilramar

I replaced the jssc with the one from https://github.com/java-native/jssc/releases, then ESPlorer works with JDK 12/13.

magixyu avatar Oct 29 '19 08:10 magixyu

There must be a long-term alternative to ESPlorer. This app is outdated and it's not reasonable to continue using above workarounds.

jhfoo avatar Jun 04 '20 13:06 jhfoo

@Foo JH

Check out:

http://chilipeppr.com/

On Thu, Jun 4, 2020 at 8:55 AM Foo JH [email protected] wrote:

There must be a long-term alternative to ESPlorer. This app is outdated and it's not reasonable to continue using above workarounds.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/4refr0nt/ESPlorer/issues/63#issuecomment-638864850, or unsubscribe https://github.com/notifications/unsubscribe-auth/ACOOM5WSXSB4RHYTBDQJ7Z3RU6RVPANCNFSM4D7BCMLA .

RouterBox avatar Jun 04 '20 19:06 RouterBox

Thanks @RouterBox. The folks who wrote chilipeppr are very smart. Love the automation built in, GitHub/ Cloud9 integration, and customisable widgets!

jhfoo avatar Jun 05 '20 03:06 jhfoo

I just used java 8, but the problem is still there. I downloaded and installed jdk-8u261-windows-x64.exe on my win10 laptop. And edited JAVA_HOME to C:\Program Files\Java\jdk1.8.0_261 But when I click the "OPEN" button on esplorer, It crashed hs_err_pid13752.log

Qiguang avatar Jul 16 '20 15:07 Qiguang

I downloaded and installed jdk-8u271-windows-x64.exe on my win10 laptop. C:\Program Files\Java\jdk1.8.0_271 ESPlorer crashed when I click the "OPEN" button

rwlakin avatar Nov 19 '20 00:11 rwlakin

davidhbrown I like your idea using batch file but I need help using it. "C:\Program Files\Java\jre1.8.0_201\bin\java.exe" -jar "%~dp0\ESPlorer.jar"

rwlakin avatar Nov 19 '20 12:11 rwlakin

Hi David!

Doesn't clicking on ESPlorer.bat work? It might not work if you do not have "java.exe" in your PATH. If you do not (simply type "java.exe" in cmd window to check) and do not want to modify your PATH you can replace java.exe with "C:\Program Files\Java\jre1.8.0_201\bin\java.exe" in the ESPlorer.bat. The part -jar "%~dp0\ESPlorer.jar" looks weird from the syntax point of view.

Assuming that jar file is located in the same folder as bat you need something like this:

"C:\Program Files\Java\jre1.8.0_201\bin\java.exe" -jar ESPlorer.jar

in the ESPlorer.bat

Regards, Oleksandr

On Thu, Nov 19, 2020 at 1:59 PM rwlakin [email protected] wrote:

davidhbrown I like your idea using batch file but I need help using it. "C:\Program Files\Java\jre1.8.0_201\bin\java.exe" -jar "%~dp0\ESPlorer.jar"

— You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub https://github.com/4refr0nt/ESPlorer/issues/63#issuecomment-730358905, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAE25S3AHH5XZ3QMOB243FLSQUJBHANCNFSM4D7BCMLA .

olebed avatar Nov 19 '20 13:11 olebed

Still working on my ESPlorer, modified the .bat file, still crashes Here's what's in my ESPlorer.bat file "C:\Program Files\Java\jre1.8.0_271\bin\java.exe" -jar ESPlorer.jar

rwlakin avatar Nov 19 '20 16:11 rwlakin

Hi, there is not enough information to help you. Please send a stacktrace (error messages). If you do not see them then open windows terminal by running "cmd", change directory via "cd" to the one where ESPlorer.jar is located and run

"C:\Program Files\Java\jre1.8.0_271\bin\java.exe" -jar ESPlorer.jar

You should see error messages in the window after the program crashes. Please post them here.

Oleksandr

On Thu, Nov 19, 2020 at 5:26 PM rwlakin [email protected] wrote:

Still working on my ESPlorer, modified the .bat file, still crashes Here's what's in my ESPlorer.bat file "C:\Program Files\Java\jre1.8.0_271\bin\java.exe" -jar ESPlorer.jar

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/4refr0nt/ESPlorer/issues/63#issuecomment-730487446, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAE25S4BF3PGE32PNRICBTTSQVBLZANCNFSM4D7BCMLA .

olebed avatar Nov 19 '20 19:11 olebed

hi olebed I have running esplorer.bat, original is java -jar "ESPlorer.jar" When I select "open" both ESPlorer and cmd crash I did edit bat file to this: "C:\Program Files\Java\jre1.8.0_271\bin\java.exe" -jar ESPlorer.jar Crashed I tried "C:\Program Files\Java\jre1.8.0_271\bin\java.exe" -jar ESPlorer.jar this in cmd prompt; just gives this: "The filename, directory name, or volume label syntax is incorrect." Probably because I don't know what I'm doing. I need more help with this.

rwlakin avatar Nov 20 '20 22:11 rwlakin

Hi Folks, faced the same issue, instead of changing my java version , i downloaded the source code , build the maven project , then use the jar from target folder.

https://github.com/4refr0nt/ESPlorer

java -jar target/Esplorer.jar

voila .... :)

abhishekkarigar avatar Nov 24 '20 05:11 abhishekkarigar

Hi abhishekkarigar, thanks a lot for sharing this!

A few questions to you:

  1. What OS are you using?
  2. What is your java version? Run "java -version" in the terminal
  3. Could you check if the pre-build application works for you too? Download the one from "releases" on the github page.

Thanks!

On Tue, Nov 24, 2020 at 7:49 AM abhishekkarigar [email protected] wrote:

Hi Folks, faced the same issue, instead of changing my java version , i downloaded the source code , build the maven project , then use the jar from target folder.

https://github.com/4refr0nt/ESPlorer https://github.com/4refr0nt/ESPlorer

java -jar target/Esplorer.jar

voila .... :)

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/4refr0nt/ESPlorer/issues/63#issuecomment-732659710, or unsubscribe https://github.com/notifications/unsubscribe-auth/AAE25S2IT45PDBCLAMQQNBDSRNI6HANCNFSM4D7BCMLA .

olebed avatar Nov 24 '20 08:11 olebed

Thanks abhishekkarigar I downloaded the release version Esplorer 0.2.0 @ github and it works with no crashes. In the process of using it. Roger

rwlakin avatar Nov 25 '20 19:11 rwlakin