Fw: [EXTERNAL] Re: font for accented characters

2023-01-10 Thread Christopher C. Lanz
see below - I neglected to reply to the list. . . . Chris Lanz 340 Dunn Hall, SUNY Potsdam lan...@potsdam.edu 315 268 1547 From: Christopher C. Lanz Sent: Tuesday, January 10, 2023 12:55 PM To: Neil C Smith Subject: Re: [EXTERNAL] Re: font for accented

Re: [EXTERNAL] Re: font for accented characters

2023-01-10 Thread Neil C Smith
On Tue, 10 Jan 2023 at 16:53, Christopher C. Lanz wrote: > I have added -J-Dfile.encoding=UTF-8 to netbeans.conf, and then, of course, > I restarted Netbeans > > System.out.println("ī") produces a question mark as the output. Same for ā Then it's possibly not (just) file encoding you want to

Re: [EXTERNAL] Re: font for accented characters

2023-01-10 Thread Christopher C. Lanz
Hello, Thanks for responding. I believe the file encoding is UTF-8: the dialog Project Properties / sources has a box labeled "encoding", and it is set to UTF-8. I have added -J-Dfile.encoding=UTF-8 to netbeans.conf, and then, of course, I restarted Netbeans System.out.println("ī")

Re: How to add local jar to Gradle

2023-01-10 Thread Scott Palmer
“The build file” is the “build.gradle” file that you would be editing to add this local dependency.  So if your .jar file was in the same folder with build.gradle, then you could just use: compile files(‘my_local.jar’)If it was in a subdirectory of your project you could use: compile