1
vote
2answers
29 views
Java Array Sort descending?
Is there any EASY way to sort an array in descending order like how they have a sort in ascending order in the Arrays class http://www.j2ee.me/javase/6/docs/api/java/util/Arrays.ht …
0
votes
3answers
37 views
How to parse/split this line while keeping note of the order?
A little stuck here. I have a simple question I guess.
Given the following input:
content {c:comment comment}this is actual content{c:comment etc} content
I need a way to get …
2
votes
2answers
55 views
static variable vs. member
If you have data for a class that will be modified and needs to be retained throughout the program, but is only used in one member function, is it preferred to make that variable a …
0
votes
3answers
20 views
Regular expressions help
Hi guys!
Help with regular expressions needed. I'm trying using regular expressions and preg_match_all find blocks <character>...</character>. Here is how my data look …
0
votes
1answer
19 views
What is the scope of effort for making standard java-mode syntax highlighting language release dependent?
My itch to see the Emacs syntax highlighting handle generics more effectively is getting worse and worse with each new release of the Java language. I suspect adding customization …
1
vote
6answers
40 views
Keep threads idle or kill them / restart them?
Pseudo-situation: have a class (let's say BackgroundMagic), and it has Start() and Stop() methods. The work in this class is done by one single thread, and is simply a short loop e …
0
votes
4answers
35 views
Under what circumstances is it reasonable to use a vendor-specific API?
I'm working with Websphere Portal and Oracle. On two occasions last week, I found that the most direct way to code a particular solution involved using API's provided by IBM and O …
1
vote
5answers
69 views
In Which Cases Is Better To Use Regular Expressions?
I'm starting to learn Regular Expressions and I want to know: In which cases is better to use them?
2
votes
5answers
35 views
loading from JAR files during deployment vs development
hi
when i am loading some data into my java program, i usually use FileInputStream. however i deploy the program as a jar file and webstart, so i have to use getRessource() or get …
1
vote
3answers
17 views
Mac OS X 10.5 Apache and Subversion upgrade alternatives
I've found myself down a rabbit hole and would like advice. It looks like Mac OS X 10.5.8 comes bundled with a pre-configured version of Apache 2.2.11 (located in /usr/sbin), PHP …
0
votes
5answers
45 views
Reliable non-network IPC in Java
Is there a reliable, cross-platform way to do IPC (between two JVMs running on the same host) in Java (J2SE) that doesn't rely on the network stack?
To be more specific, I have a …
2
votes
7answers
91 views
How to implement connected rooms?
This may be a duplicate question as I don't know to phrase the search query. I'm creating a Zork-like text based game in Java where the character moves to different rooms which are …
1
vote
4answers
37 views
Java Problem “UnsatisfiedLinkError”
I made a simple java program that sends bytes to the parallel port, which uses a .dll along with two other classes (pPort.java and ioPort.java) to accomplish it, and it works perfe …
0
votes
0answers
25 views
htmlParser Help
Hi,
I am new using htmlParser in Java, please help me with this condition.
htmlString = <> class="user" href="">first name</> posted on <> class="user" hre …
1
vote
2answers
23 views
how can i detect hebrew characters both iso8859-8 and utf8 in a string using php
I want to be able to detect (using regular expressions) if a string contains hebrew characters both utf8 and iso8859-8 in the php programming language. thanks!
