Search Results

0
votes

Printing out items in any Collection in reverse order?

Isn't there a base Collection class? Probably worth looking here as a starting point... h …
1
vote

Does C++ still matter?

I think it's very useful to learn. You may or may not need it professionally, but it is neat to learn a transparent object-oriented language. By "transparent" I mean that it's relatively easy (and …
1
vote

Getting a file from an http request in java

Check out the URL and URLConnection classes. Here's some documentation: http://www.exampledepot.com/egs/java.net/Post.htm …
1
vote

How to remove HTML tag in Java

No. Regular expressions can not by definition parse HTML. You could use a regex to s/<[^>]*>// or something naive like that but it's going to be insufficient, especially if you're intere …
1
vote

How do you get a data value associated with a specific col,row from a 2-d array in java?

If you just have one row array and one column array then you have something like this foo bar baz sna fu but what you really want is something like this …
1
vote

Best approach to parse text files that contain multiple types of delimiters?

You could write a class that parses a file something like this: interface MyParser { public MyParser(char delimiter, List<String> fields); Map<String,String> ParseF …
2
votes

communication between Java and C#

XMPP isn't what you want. It's designed for passing messages between computers with a central server. I'd recommend using sockets to pass data between the apps. See the System.Net.Sockets.S …
4
votes

Java: Code Review: Binary Search

What if the array has only one element, the one you're looking for? …
1
vote

Java: how to create a template class ?

You use "generics" to do this in Java: public class SomeClass<T> { private T data; public SomeClass() { } public void set(T data) { this.data = data; } }; …
4
votes

Remove element from linked list java

To remove an item in the middle of the linked list, set the previous item's "link" pointer to the "link" pointer of the object you want to remove. For instance, you could add something like this to …
5
votes

What’s an efficient algorithm to make one list equal to another one?

I'd step back and think about the design of your program. It sounds like it would be more reasonable to have a class that manages all your Players -- saving them, updating them, handing out referen …
1
vote

Java: Using GSon incorrectly? (null pointer exception)

Looking the returned JSON, it seems that you're asking for the estimatedResultsCount member of the wrong object. You're asking for hits.estimatedResultsCount, but you need hits.responseData.cursor. …