Click here to Skip to main content
15,921,212 members
Home / Discussions / Java
   

Java

 
AnswerRe: Calling VC dll as a thread from java application Pin
deepnighttwo11-Jun-09 21:52
deepnighttwo11-Jun-09 21:52 
GeneralRe: Calling VC dll as a thread from java application Pin
Aditya2211-Jun-09 22:22
Aditya2211-Jun-09 22:22 
QuestionCalling VC dll as a thread from java application Pin
Aditya2210-Jun-09 2:05
Aditya2210-Jun-09 2:05 
QuestionHelp me to convert this code in C# into a Java code Pin
hellboy_839-Jun-09 22:07
hellboy_839-Jun-09 22:07 
AnswerRe: Help me to convert this code in C# into a Java code Pin
Dave Doknjas10-Jun-09 12:21
Dave Doknjas10-Jun-09 12:21 
QuestionWebServices Pin
cdpace8-Jun-09 1:28
cdpace8-Jun-09 1:28 
GeneralCalling vc++ exe from java Pin
don Moen7-Jun-09 21:50
don Moen7-Jun-09 21:50 
GeneralRe: Calling vc++ exe from java Pin
Marc Firth7-Jun-09 22:12
Marc Firth7-Jun-09 22:12 
import java.io.BufferedReader;
import java.io.InputStreamReader;

public class cmdExec {
     public String run(String cmdLine) {
          String line;
           String output = "";
           try {
                 Process p = Runtime.getRuntime().exec(cmdLine);
                 BufferedReader input = new BufferedReader
                       (new InputStreamReader(p.getInputStream()));
                 while ((line = input.readLine()) != null) {
                       output += (line + '\n');
                 }
                 input.close();
                 }
           catch (Exception ex) {
                 ex.printStackTrace();
           }
           return output;
     }
}


dunno if that will help at all - but it ws useful for me when I couldnt run a prog from the cmd line


GeneralRe: Calling vc++ exe from java Pin
don Moen7-Jun-09 23:17
don Moen7-Jun-09 23:17 
GeneralRe: Calling vc++ exe from java Pin
deepnighttwo11-Jun-09 22:01
deepnighttwo11-Jun-09 22:01 
GeneralRe: Calling vc++ exe from java Pin
don Moen12-Jun-09 21:46
don Moen12-Jun-09 21:46 
General[Message Deleted] Pin
rajisweety7-Jun-09 7:53
rajisweety7-Jun-09 7:53 
GeneralPlease read carefully forum guidelines before posting... Pin
CPallini7-Jun-09 21:13
mveCPallini7-Jun-09 21:13 
GeneralRe: URGENT need a program in java Pin
Nagy Vilmos8-Jun-09 2:03
professionalNagy Vilmos8-Jun-09 2:03 
GeneralRe: URGENT need a program in java Pin
rajisweety11-Jun-09 15:49
rajisweety11-Jun-09 15:49 
GeneralRe: URGENT need a program in java Pin
Java John11-Jun-09 1:56
Java John11-Jun-09 1:56 
Question[Message Deleted] Pin
rajisweety7-Jun-09 7:45
rajisweety7-Jun-09 7:45 
AnswerInappropriate Title Pin
fly9047-Jun-09 10:32
fly9047-Jun-09 10:32 
GeneralI am getting the error when I try to execute a Query. Error retrieving data:1 java.sql.SQLException: [Macromedia][Oracle JDBC Driver]Value can not be converted to requested type.Exception in DBAccessor:formatResults java.sql.SQLException: [Macromedia Pin
ummadu5-Jun-09 10:40
ummadu5-Jun-09 10:40 
GeneralI am getting the error when I try to execute a Query. Error retrieving data:1 java.sql.SQLException: [Macromedia][Oracle JDBC Driver]Value can not be converted to requested type.Exception in DBAccessor:formatResults java.sql.SQLException: [Macromedia Pin
ummadu5-Jun-09 10:40
ummadu5-Jun-09 10:40 
GeneralError getting column type Pin
fly9047-Jun-09 10:41
fly9047-Jun-09 10:41 
Questionclient server communication Pin
dumnbncool5-Jun-09 7:21
dumnbncool5-Jun-09 7:21 
QuestionBackground dimmer Pin
EnchantedSun5-Jun-09 3:56
EnchantedSun5-Jun-09 3:56 
QuestionProblem with JSObject Pin
raesa5-Jun-09 2:44
raesa5-Jun-09 2:44 
QuestionJava Swing - Right Click and JPopupMenu in JTable Pin
djDash5-Jun-09 0:25
djDash5-Jun-09 0:25 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.