Click here to Skip to main content
15,867,756 members
Home / Discussions / Java
   

Java

 
GeneralRe: JCOMBOBOX Pin
Chrisloys4-Dec-12 6:47
Chrisloys4-Dec-12 6:47 
GeneralRe: JCOMBOBOX Pin
Richard MacCutchan4-Dec-12 7:24
mveRichard MacCutchan4-Dec-12 7:24 
Questionneed help Pin
dipfol29-Nov-12 17:56
dipfol29-Nov-12 17:56 
AnswerRe: need help Pin
AprNgp29-Nov-12 20:08
AprNgp29-Nov-12 20:08 
AnswerRe: need help Pin
Richard MacCutchan29-Nov-12 21:51
mveRichard MacCutchan29-Nov-12 21:51 
Questionextract battery percentage Pin
akki23099127-Nov-12 20:55
akki23099127-Nov-12 20:55 
AnswerRe: extract battery percentage Pin
Richard MacCutchan27-Nov-12 23:59
mveRichard MacCutchan27-Nov-12 23:59 
Questioni have a problem around System.console, am using eclipse Pin
Member 963455227-Nov-12 0:31
Member 963455227-Nov-12 0:31 
import java.io.Console;
import java.util.regex.Pattern;
import java.util.regex.Matcher;

public class RegexTestHarness {

public static void main(String[] args){
Console console = System.console();
if (console == null) {
System.err.println("No console.");
System.exit(1);
}
while (true) {

Pattern pattern =
Pattern.compile(console.readLine("%nEnter your regex: "));

Matcher matcher =
pattern.matcher(console.readLine("Enter input string to search: "));

boolean found = false;
while (matcher.find()) {
console.format("I found the text" +
" \"%s\" starting at " +
"index %d and ending at index %d.%n",
matcher.group(),
matcher.start(),
matcher.end());
found = true;
}
if(!found){
console.format("No match found.%n");
}
}
}
}
AnswerRe: i have a problem around System.console, am using eclipse Pin
TorstenH.27-Nov-12 1:44
TorstenH.27-Nov-12 1:44 
GeneralRe: i have a problem around System.console, am using eclipse Pin
Member 963455228-Nov-12 2:00
Member 963455228-Nov-12 2:00 
GeneralRe: i have a problem around System.console, am using eclipse Pin
TorstenH.28-Nov-12 8:36
TorstenH.28-Nov-12 8:36 
GeneralRe: i have a problem around System.console, am using eclipse Pin
Member 963455228-Nov-12 23:43
Member 963455228-Nov-12 23:43 
GeneralRe: patient cancer registration form Pin
Member 963455215-Jan-13 2:44
Member 963455215-Jan-13 2:44 
GeneralRe: patient cancer registration form Pin
TorstenH.15-Jan-13 3:33
TorstenH.15-Jan-13 3:33 
QuestionMobile in java using netbeans Pin
rcjr2421-Nov-12 13:36
rcjr2421-Nov-12 13:36 
SuggestionRe: Mobile in java using netbeans Pin
Richard MacCutchan21-Nov-12 22:05
mveRichard MacCutchan21-Nov-12 22:05 
Questionhi i need help about RIM,client server,file sharing Pin
shado-ite21-Nov-12 8:47
shado-ite21-Nov-12 8:47 
AnswerRe: hi i need help about RIM,client server,file sharing Pin
Richard MacCutchan21-Nov-12 8:58
mveRichard MacCutchan21-Nov-12 8:58 
QuestionMail server in java Pin
Member 954244521-Nov-12 2:23
Member 954244521-Nov-12 2:23 
AnswerRe: Mail server in java Pin
Richard MacCutchan21-Nov-12 3:14
mveRichard MacCutchan21-Nov-12 3:14 
AnswerRe: Mail server in java Pin
TorstenH.24-Nov-12 5:38
TorstenH.24-Nov-12 5:38 
QuestionUsing MuPDF library in java Pin
slesz16-Nov-12 22:40
slesz16-Nov-12 22:40 
AnswerRe: Using MuPDF library in java Pin
Richard MacCutchan17-Nov-12 21:58
mveRichard MacCutchan17-Nov-12 21:58 
AnswerRe: Using MuPDF library in java Pin
yangxiaoyan18-Nov-12 16:58
yangxiaoyan18-Nov-12 16:58 
Questionuse snmp check equiment type Pin
XMafei13-Nov-12 22:05
XMafei13-Nov-12 22:05 

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.