it’s again about VSCode and Java (I start learning it). I have a little test program that loads images and works fine when started in the VSCode IDE. I have also seen here that I must somehow load the pics from a “classpath” – so I added a classpath for the “pics” folder sh…
Tag: resources
mvn compile OK, but mvn compile exec:java -D exec.mainClass=”mygroup.TestExpression” fails
I’ve refered to this post: Resource specification not allowed here for source level below 1.7 I used the solution, but didn’t solve problem. Well I’m not using eclipse but jdk 1.8 + vscode on win10, using maven to generate a new project: mvn archetype:generate add these lines in my pom.xml i…
Problem resolving an android.content.res.Resources error
I understand that this error has been addressed severally and I’ve checked most of them like Android: android.content.res.Resources$NotFoundException: String resource ID #0x5, android.content.res.Resources$NotFoundException: String resource ID to see if I could find a solution to my problem but I couldn…
MissingResourceException: Can’t find bundle for base name resources.controls.controls_res, locale en
I can’t understand what the problem is, why he swears and can’t find locale en. Is there a problem with paths or boundle names? The legacy project, written 15 years ago, used to be in Ant, now it was translated to Gradle, this error has appeared. It builds on Ant without problems. P.S. I marked th…
How to get .jar resources path?
I’m using a custom method to get pictures from the resources/ folder. The hardcoded path works well when programming during production (src/main/resources/). However when delivering, I would need to make this path relative to the .jar root. So I made this. The printed path is valid and points to the cor…
Proper way to close an AutoCloseable
What is the most reliable pattern to follow when closing an OutputStream, ServerSocket, or other object that implements the AutoCloseable interface? Should I use try-catch-finally? Or a shutdown hook. Answer The correct way to use an AutoCloseable instance is with a try-with-resources block, so the resource i…
Read directory inside JAR with InputStreamReader
So, this question has been asked a million times i believed and I’ve been reading them for a couple of hours and trying several options given by some people but none of them work for me. I want to list all the files inside a directory inside the application’s JAR, so in IDE this works: That gives …
Are Locks AutoCloseable?
Are Locks auto-closeable? That is, instead of: Lock someLock = new ReentrantLock(); someLock.lock(); try { // … } finally { someLock.unlock(); } …can I say: try (Lock someLock = new …
open resource with relative path in Java
In my Java app I need to get some files and directories. This is the program structure: guiclass loads the resourcesloader class which will load my resources (directory and file). As to the file, I tried in order to get the real path, but this way does not work. I have no idea which path to use for the direct…