Coder Social home page Coder Social logo

Comments (37)

RouterBox avatar RouterBox commented on June 2, 2024 4

Roll back to JDK 8. Fixed it for me.

from esplorer.

magixyu avatar magixyu commented on June 2, 2024 4

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

from esplorer.

RouterBox avatar RouterBox commented on June 2, 2024 4

from esplorer.

d-rez avatar d-rez commented on June 2, 2024 3

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

from esplorer.

davidhbrown avatar davidhbrown commented on June 2, 2024 3

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" 

from esplorer.

Qiguang avatar Qiguang commented on June 2, 2024 3

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

from esplorer.

d-rez avatar d-rez commented on June 2, 2024 2

@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?

from esplorer.

abhishekkarigar avatar abhishekkarigar commented on June 2, 2024 2

@tgrotowski
https://github.com/4refr0nt/ESPlorer/releases/tag/v0.2.0 use this,

from esplorer.

4refr0nt avatar 4refr0nt commented on June 2, 2024 1

Its problem jSSC-2.8_x86_64.dll jSCC library

from esplorer.

4refr0nt avatar 4refr0nt commented on June 2, 2024 1

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

from esplorer.

jhfoo avatar jhfoo commented on June 2, 2024 1

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

from esplorer.

vecesneni avatar vecesneni commented on June 2, 2024 1

For me this v0.2.0 version still crashes on opening the port due to the outdated jssc library. The Azul Java support updated for me the jssc in the jar file to the latest, jssc-2.9.5, I have attached. Please use this, if you have problems.
ESPlorer.zip

from esplorer.

d-rez avatar d-rez commented on June 2, 2024

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

from esplorer.

RouterBox avatar RouterBox commented on June 2, 2024

Confirming Esplorer is broken on windows 10 with jdk 9.

from esplorer.

FUTC-Coding avatar FUTC-Coding commented on June 2, 2024

Having the same problem on win 10 with jdk 9

from esplorer.

CyanoFresh avatar CyanoFresh commented on June 2, 2024

same

from esplorer.

wildfire810 avatar wildfire810 commented on June 2, 2024

good jobs
all above

from esplorer.

fribeiro1 avatar fribeiro1 commented on June 2, 2024

Same for Java 11.

from esplorer.

kabilramar avatar kabilramar commented on June 2, 2024

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

from esplorer.

davidhbrown avatar davidhbrown commented on June 2, 2024

@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.

from esplorer.

kabilramar avatar kabilramar commented on June 2, 2024

from esplorer.

kabilramar avatar kabilramar commented on June 2, 2024

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

from esplorer.

jhfoo avatar jhfoo commented on June 2, 2024

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

from esplorer.

rwlakin avatar rwlakin commented on June 2, 2024

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

from esplorer.

rwlakin avatar rwlakin commented on June 2, 2024

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"

from esplorer.

olebed avatar olebed commented on June 2, 2024

from esplorer.

rwlakin avatar rwlakin commented on June 2, 2024

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

from esplorer.

olebed avatar olebed commented on June 2, 2024

from esplorer.

rwlakin avatar rwlakin commented on June 2, 2024

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.

from esplorer.

abhishekkarigar avatar abhishekkarigar commented on June 2, 2024

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 .... :)

from esplorer.

olebed avatar olebed commented on June 2, 2024

from esplorer.

rwlakin avatar rwlakin commented on June 2, 2024

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

from esplorer.

abhishekkarigar avatar abhishekkarigar commented on June 2, 2024

@olebed

  1. Windows 10
  2. java version "1.8.0_271"
  3. yes pre-build application works now too :)

from esplorer.

olebed avatar olebed commented on June 2, 2024

from esplorer.

tgrotowski avatar tgrotowski commented on June 2, 2024

Guys, There is some solution for this crash?

My system win 10 x64. I tested jre1.8.0_281. I got crash when click "open". App dowloaded from here: https://esp8266.ru/esplorer/#download (zip version)

Or maybe guys do you know some alternative software?

from esplorer.

tgrotowski avatar tgrotowski commented on June 2, 2024

@abhishekkarigar it works! Thank you so much. Have a nice day! ;]

from esplorer.

gicheve avatar gicheve commented on June 2, 2024

Thanks, it works but vertical scroll cannot be moved down and files on right are not visible if they are more than 7-8...

from esplorer.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.