Re: createDirectory(....)

2022-10-31 Thread Helmut Leininger
Maybe you should use Files.createDirectories(dirpath) instead. Mit freundlichen Grüßen Helmut Leininger Diese Nachricht wurde von meinem Android-Gerät mit K-9 Mail gesendet. Am 1. November 2022 02:07:46 MEZ schrieb Amn : >"*/Files.createDirectory(dir_path)/*" gives an error, such as, >"*/jav

createDirectory(....)

2022-10-31 Thread Amn
"*/Files.createDirectory(dir_path)/*" gives an error, such as, "*/java.nio.file.NoSuchFileException/*" when I tried to create a directory outside the NB15 project directory, i.e. "//home/my_home/App_Home_Dir/Sub_App_Dir/db/DatabaseTest.db/". However, when the dir_path is just the file name (/Da

RE: Presentation of non-english characters in the debugger

2022-10-31 Thread Greenberg, Gary
Thank you. However, the problem was of a different nature. I was given a file and told that it is in UTF-8 encoding, but it appeared that it wasn’t. I converted file to UTF-8 and everything started working as expected. From: Helmut Leininger Sent: Monday, October 31, 2022 1:42 PM To: users@netbe

Re: Presentation of non-english characters in the debugger

2022-10-31 Thread Helmut Leininger
Hi, If you read using UTF-8 and then write specifying UTF-8 there should not be a problem. But Windows does not use UTF-8 by standard I think it uses CP1252 or similar. And a command window (cmd) uses the windows setting. When you write a file in utf-8 an then display it in the command window yo

Presentation of non-english characters in the debugger

2022-10-31 Thread Greenberg, Gary
I have created an application that reads data from the CSV file, process it and write it into another file. It is working fine except one thing. German characters are being replaced. For example instead of leiüzig I see lei�zig Same replacement I see in debugger when I stop it after reading a lin

Re: Font too small

2022-10-31 Thread Michael Bien
On 31.10.22 16:55, negora wrote: I've just tested NetBeans IDE with OpenJDK 19.0.1+10 (a build from Eclipse Temurin), and it still seems to be using an old version of FreeType. I believe so because the font rendering is still horrible if you don't set the "FREETYPE_PROPERTIES" variable. I don't

Re: Font too small

2022-10-31 Thread negora
I've just tested NetBeans IDE with OpenJDK 19.0.1+10 (a build from Eclipse Temurin), and it still seems to be using an old version of FreeType. I believe so because the font rendering is still horrible if you don't set the "FREETYPE_PROPERTIES" variable. I don't understand why in 2022 they stil

Re: Search for maven dependency

2022-10-31 Thread name name2
Some tokens required by included modules are not provided by included modules. The application will fail starting up. The missing tokens are: org.netbeans.spi.project.ProjectManagerImplementation ref: [org.netbeans.modules.projectapi] How to fix? пн, 31 окт. 2022 г. в 17:16, name name

Re: Search for maven dependency

2022-10-31 Thread name name2
org.netbeans.api org-netbeans-modules-projectuiapi ${netbeans.version} This was helped with clean & build пн, 31 окт. 2022 г. в 16:29, name name2 : > [image: image.png] > > пн, 31 окт. 2022 г. в 16:20, name name2 : > >> Hello >> >> Can't lo

Re: Font too small

2022-10-31 Thread Michael Bien
interesting. Since it was filed against JDK 11.0.5 which was a few updates ago. Was it not fixed/backported since then? A lot of those linked JDK bugs are marked resolved. -mbien On 31.10.22 07:58, negora wrote: Besides editing the "$NETBEANS_HOME/etc/netbeans.conf" file (to add the "--fons

Re: Search for maven dependency

2022-10-31 Thread name name2
[image: image.png] пн, 31 окт. 2022 г. в 16:20, name name2 : > Hello > > Can't locate maven module name for code: > > import org.openide.util.lookup.ServiceProvider; > import *org.netbeans.spi.project.ProjectFactory*; > > @ServiceProvider(service = *ProjectFactory.class*) > public class BananaPro

Search for maven dependency

2022-10-31 Thread name name2
Hello Can't locate maven module name for code: import org.openide.util.lookup.ServiceProvider; import *org.netbeans.spi.project.ProjectFactory*; @ServiceProvider(service = *ProjectFactory.class*) public class BananaProjectFactory implements ProjectFactory { }