Comment by Federico klez Culloca on How can I make JAR files work outside...
Please share some more info, for example how you run it, your project structure, the errors you're getting, the code that is causing those error (preferably in the form of a minimal reproducible...
View ArticleComment by Federico klez Culloca on How to handle this type of request using...
Hello and welcome. Your question is unclear. How do Excel and Java fit in here? Please [edit] your question and rephrase it to make it more clear.
View ArticleComment by Federico klez Culloca on Show function after x amount of taps -...
&& nb_shown_lobby != 0
View ArticleComment by Federico klez Culloca on The image is base64 encoded but cannot be...
"they are delivered abnormally" what do you mean? Are you seeing the wrong image? No image? The email doesn't get delivered at all? Please describe what exact problem you're encountering.
View ArticleComment by Federico klez Culloca on read non latin char from json string in java
Looks to me like the json simply contains invalid characters and there's no way to convert them to anything sensible.
View ArticleComment by Federico klez Culloca on What's the reason to call/create...
Also, what if tomorrow you need the constructor to do other stuff after setting values? Are you going to hunt down every call to the default constructor and add whatever it needs to do down there? What...
View ArticleComment by Federico klez Culloca on Why can I create Comparable objects with...
@АлександрСкворцов minor nitpick: String is final, it can't have subclasses.
View ArticleComment by Federico klez Culloca on JPA. Specification, Implementation or both?
They are the implementation provided by whatever framework or application server you're using.
View ArticleComment by Federico klez Culloca on Is it good effect make closeable in...
No, that's rather useless to do at the end of a method (especially setting vo1s and vo2s to null).
View ArticleComment by Federico klez Culloca on Why arraylist java does not expose...
Why would you need it explicitly? ArrayList is a list backed by an array. You know how big an array can be. It's defined in the java spec (even just by the fact that you must index them with an int),...
View ArticleComment by Federico klez Culloca on How do I make my Android quarterly...
For the last point you may want to look into Atom
View ArticleComment by Federico klez Culloca on Display "Approved" or "Rejected" on input...
Does this answer your question? jQuery cannot assign to a function result
View ArticleComment by Federico klez Culloca on Which one should I install for m2 pro jdk?
ARM64 would be the correct architecture.
View ArticleComment by Federico klez Culloca on Show function after x amount of taps -...
&& nb_shown_lobby != 0
View ArticleComment by Federico klez Culloca on How to detect N+1 problems in a...
For those wondering (like I was): What is the "N+1 selects problem" in ORM (Object-Relational Mapping)?. I knew of the problem, I just didn't have a name for it. Good to know.
View ArticleComment by Federico klez Culloca on How can I set the precision of a...
Looks to me like this is a problem for the client of that DTO, not for the DTO itself. By the way, if you want non-standard behavior you'll probably have to bend over and use a custom constructor. Or...
View ArticleComment by Federico klez Culloca on Window Builder not letting me add buttons...
@Stultuske that's like commenting on a question about git not working "why don't you just use .1 or .2.4 at the end of the file name and version them manually?"
View ArticleComment by Federico klez Culloca on I'm getting an error while creating the...
What error? With what code?
View Article