| Author |
Message |
jpeps
Joined: 31 May 2008 Posts: 2421
|
Posted: Fri 28 Dec 2012, 03:12 Post subject:
Java Subject description: Cross platform programming |
|
I've been experimenting with java as a cross-platform language, and wrote a library database that works nicely on linux and windows with the latest Java JRE binaries (an easy download from Oracle does it). Run the files with "java -jar file.jar" I had to switch to OpenBox WM, since there's a conflict with JWM and java files.
Here's a library app to test. <Add> or <Remove> handles books on a clickable alphabetized list. Clicking an item writes the title and author into the entry boxes, and posts the original entry date. There's a button for getting the total number of books.
Data from the book class is written in XML format into the mlData folder, along with the book-list.
http://jpeters.net/apps/MyLibrary3.jar
Updated: Cut File size by a third; added publish info.
Updated: Streamlined code.
Updated: 4/4/13
All data now in one MyLibrary.xml file
Add author and title search buttons (repeated click gets next selection)
| Description |
|
| Filesize |
15.71 KB |
| Viewed |
1240 Time(s) |

|
Last edited by jpeps on Fri 05 Apr 2013, 03:52; edited 2 times in total
|
|
Back to top
|
|
 |
jpeps
Joined: 31 May 2008 Posts: 2421
|
Posted: Sun 30 Dec 2012, 15:44 Post subject:
|
|
Working jre: (updated)
http://www.jpeters.net/apps/jre1-7.0.13-001.sfs.tar.gz
ffde09235525e75dd8468741cc361123
Last edited by jpeps on Fri 08 Feb 2013, 04:35; edited 3 times in total
|
|
Back to top
|
|
 |
jpeps
Joined: 31 May 2008 Posts: 2421
|
Posted: Thu 03 Jan 2013, 00:11 Post subject:
|
|
I was able to knock 63% off use of RAM with -Xmxn option (n=size). 2m is minimum.
example: in ROX, set run action to:
java -Xmx2m -jar "$@"
|
|
Back to top
|
|
 |
jpeps
Joined: 31 May 2008 Posts: 2421
|
Posted: Sat 05 Jan 2013, 03:46 Post subject:
|
|
Here's a text editor I built that sorts alphanumerically or by line size to a "sort.txt" file. This one's only 8K. Create and save a new list from within the editor, or just copy over the file.
Updated: includes open, save as dialogs. Closing with exit button records last file, which opens on next session.
Updated: includes a line number sort.
| Description |
|
| Filesize |
10.08 KB |
| Viewed |
1042 Time(s) |

|
| Description |
|

Download |
| Filename |
SortEditor.tar.gz |
| Filesize |
12.25 KB |
| Downloaded |
140 Time(s) |
Last edited by jpeps on Fri 18 Jan 2013, 02:27; edited 2 times in total
|
|
Back to top
|
|
 |
jpeps
Joined: 31 May 2008 Posts: 2421
|
Posted: Sun 06 Jan 2013, 15:05 Post subject:
|
|
Updated the sort editor with open file and save as dialogues. It's still about 12K, and runs fast even on my old dell. Also, it runs on everything I tested it on. I'm definitely rethinking the whole java thing.
|
|
Back to top
|
|
 |
sunburnt

Joined: 08 Jun 2005 Posts: 4006 Location: Arizona, U.S.A.
|
Posted: Sun 06 Jan 2013, 18:35 Post subject:
|
|
Yep, that`s what drew me to it many years ago.
And it ( like C ) does very well in the portability department.
I was dismayed by the long learning curve, but it`s much like C.
It needs a really good class browser that has many search methods.
The other thing is... Does it compile to binary ( can`t remember ).
### The thought that I had...
Android is nearly a tablet + desktop O.S. ( amigo called it an interface ).
I`m thinking that making it desktop capable would kill Linux and Weeners.
|
|
Back to top
|
|
 |
jpeps
Joined: 31 May 2008 Posts: 2421
|
Posted: Sun 06 Jan 2013, 20:29 Post subject:
|
|
| sunburnt wrote: |
I was dismayed by the long learning curve, but it`s much like C.
It needs a really good class browser that has many search methods. |
There are great tools like Eclipse that make it quite easy. Eclipse will offer suggestions and insert code for you as you program. There's also a ton of help on the internet.
| Quote: |
The other thing is... Does it compile to binary ( can`t remember ). |
Yes...it writes "bytecode" to the Java Virtual Machine
| Quote: |
### The thought that I had...
Android is nearly a tablet + desktop O.S. ( amigo called it an interface ).
I`m thinking that making it desktop capable would kill Linux and Weeners. |
Interface, as in extension vs replacement sounds correct. The JVM still doesn't exploit the individual computer's hardware (graphic card, etc) very efficiently. There's currently lots of development going on, so things should only improve. For programmers, it's a tool you can really sink your teeth into.
|
|
Back to top
|
|
 |
01micko

Joined: 11 Oct 2008 Posts: 7019 Location: qld
|
Posted: Sun 13 Jan 2013, 20:02 Post subject:
|
|
jpeps,
What's the conflict with jwm? Joe is currently working on jwm and has written some java stuff too, so he should be able to fix it.
_________________ keep the faith .. 
|
|
Back to top
|
|
 |
jpeps
Joined: 31 May 2008 Posts: 2421
|
Posted: Sun 13 Jan 2013, 21:01 Post subject:
|
|
| 01micko wrote: | jpeps,
What's the conflict with jwm? Joe is currently working on jwm and has written some java stuff too, so he should be able to fix it. |
Text entry loses focus, and you can't get it back.
|
|
Back to top
|
|
 |
01micko

Joined: 11 Oct 2008 Posts: 7019 Location: qld
|
Posted: Sun 13 Jan 2013, 21:52 Post subject:
|
|
jpeps,
Do you mind trying the latest version and see if it continues? You'll have to compile it. http://joewing.net/projects/jwm/snapshots/jwm-652.tar.bz2 , direct link to source
_________________ keep the faith .. 
|
|
Back to top
|
|
 |
jpeps
Joined: 31 May 2008 Posts: 2421
|
Posted: Sun 13 Jan 2013, 23:36 Post subject:
|
|
Same issue with ver -652
|
|
Back to top
|
|
 |
01micko

Joined: 11 Oct 2008 Posts: 7019 Location: qld
|
Posted: Sun 13 Jan 2013, 23:49 Post subject:
|
|
Ok, I see it too, Even Joe's program (ShareBrowse.jar) doesn't work. I'm sure his geek pride will want that fixed.
_________________ keep the faith .. 
|
|
Back to top
|
|
 |
jpeps
Joined: 31 May 2008 Posts: 2421
|
Posted: Mon 14 Jan 2013, 00:07 Post subject:
|
|
| 01micko wrote: | | Ok, I see it too, Even Joe's program (ShareBrowse.jar) doesn't work. I'm sure his geek pride will want that fixed. |
|
|
Back to top
|
|
 |
01micko

Joined: 11 Oct 2008 Posts: 7019 Location: qld
|
Posted: Mon 14 Jan 2013, 00:48 Post subject:
|
|
| jpeps wrote: | | 01micko wrote: | | Ok, I see it too, Even Joe's program (ShareBrowse.jar) doesn't work. I'm sure his geek pride will want that fixed. |
 | Reported.
_________________ keep the faith .. 
|
|
Back to top
|
|
 |
01micko

Joined: 11 Oct 2008 Posts: 7019 Location: qld
|
Posted: Tue 15 Jan 2013, 18:43 Post subject:
|
|
Fixed in JWM-653 .. now I can try your programs
_________________ keep the faith .. 
|
|
Back to top
|
|
 |
|