The Artima Developer Community
Sponsored Link

Java Answers Forum
Unix utility

1 reply on 1 page. Most recent reply: Sep 2, 2009 11:06 PM by Kondwani Mkandawire

Welcome Guest
  Sign In

Go back to the topic listing  Back to Topic List Click to reply to this topic  Reply to this Topic Click to search messages in this forum  Search Forum Click for a threaded view of the topic  Threaded View   
Previous Topic   Next Topic
Flat View: This topic has 1 reply on 1 page
Anushri Agrawal

Posts: 1
Nickname: anushri000
Registered: Sep, 2009

Unix utility Posted: Sep 2, 2009 4:56 AM
Reply to this message Reply
Advertisement
I want to create a tool which can run on UNIX server. How do i that using Java?


Kondwani Mkandawire

Posts: 530
Nickname: spike
Registered: Aug, 2004

Re: Unix utility Posted: Sep 2, 2009 11:06 PM
Reply to this message Reply
> I want to create a tool which can run on UNIX server. How
> do i that using Java?

This is very vague. Starting point though would be to see if JDK is installed on your Unix box (if you intend to build the software on the Unix box, else you just need the JRE). In a terminal type javac -help, if it is installed it will give you a list of options on how to use Javac. If not, then you'll have to Google "Java Installation on XXX" where XXX is your Unix Distro - AIX, BSD, etc...

Then it will depend on what type of Java Tool you are trying to write, does it have several users (equivalent to an enterprise App), is it Webbased or thick-client. If it is an Enterprise App. if you don't expect that many users I would suggest you learn Spring, else download an Application Server (JBoss, Glassfish) and learn JEE.

You may also want to get a Java IDE installed on your Unix box (if you are working directly on the box) - I recommend Eclipse because its free (else if you have some cheddar IDEA is brilliant)...

Flat View: This topic has 1 reply on 1 page
Topic: Assign digits in an integer to separate variables Previous Topic   Next Topic Topic: Printer Access

Sponsored Links



Google
  Web Artima.com   

Copyright © 1996-2019 Artima, Inc. All Rights Reserved. - Privacy Policy - Terms of Use