Click here to Skip to main content
15,881,248 members
Home / Discussions / Java
   

Java

 
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 
AnswerRe: i have a problem around System.console, am using eclipse Pin
TorstenH.27-Nov-12 1:44
TorstenH.27-Nov-12 1:44 
I don't know where you got that console hassle there - it's a complete mixup.

Your code works when the console is addressed right:

Java
public class RegexTestHarness {

	public static void main(String[] args) {
		while (true) {
			try {
				BufferedReader console = new BufferedReader(new InputStreamReader(System.in)); // only this can provide a buffered reading
				System.out.println("Enter your regex:");
				String strValue = console.readLine(); // read value
				Pattern pattern = Pattern.compile(strValue); // create pattern
			
				System.out.println("Enter input string to search:");
				String strMatch = console.readLine();
				Matcher matcher = pattern.matcher(strMatch);
	
				boolean found = false;
				while (matcher.find()) {
					System.out.println(String.format("I found the text" + " \"%s\" starting at "
							+ "index %d and ending at index %d.",
							matcher.group(), matcher.start(), matcher.end()));
					found = true;
				}
				if (!found) {
					System.console().format("No match found.");
				}
			} catch (IOException oException) { oException.printStackTrace();} // for the buffered reader - in case it fails
		}
	}
}

regards Torsten
When I'm not working

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 
AnswerRe: use snmp check equiment type Pin
TorstenH.14-Nov-12 19:03
TorstenH.14-Nov-12 19:03 

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.