Search Results

2
votes
4answers
247 views

Threading in Java

I am trying to have my main thread spawn off a new thread and, after some time, raise the interrupt flag. When it does so, the spawned thread should see that flag and terminate itself. The …
0
votes
2answers
488 views

C# Regex Split To Java Pattern split

I have to port some C# code to Java and I am having some trouble converting a string splitting command. While the actual regex is still correct, when splitting in C# the regex tokens are pa …