Re: opening isdn connection with external file
On 02/27/2012 06:55 AM, nescafe wrote:
Hello.
Im using netbeans on my linux box but the program will be placed on
windowz box.That's why i use .bat file. I can put this into code but
it's simple to work with .bat file.
Anyway, here is the problem...
I have to open ISDN connection and make the dial.
The connection is in part of local area connection and i can start it
with netsh or devcon. This part is tested and working.
But... to complete the process i have to click on "Dial" button.
Simply put... i start the connection with my java program and connection
awaits dial confirmation click.
How to make this "click" in my java program ?
import javax.swing.JOptionPane;
public class OptionTest {
public static void main(String[] args) {
int chosenOption = JOptionPane.showConfirmDialog(
null,
"Confirm dial?",
"ISDN Connection",
JOptionPane.YES_NO_CANCEL_OPTION );
String optionMessage;
if (chosenOption == JOptionPane.CANCEL_OPTION) {
optionMessage = "Cancel option chosen";
}
else if (chosenOption == JOptionPane.NO_OPTION) {
optionMessage = "No option chosen";
}
else if (chosenOption == JOptionPane.YES_OPTION){
optionMessage = "Yes option chosen";
}
else {optionMessage = "Unexpected Option";}
JOptionPane.showMessageDialog(null, optionMessage);
}
}