Search Results

0
votes

Why does this nested ArrayList code throw an exception?

You've created empty array lists in the for loop, so trying access any element in them return null to System.out.println() edit Sorry, wont' return null but instead throw ArrayInde …
0
votes

Equivalent of c#’s ‘as’ in Java?

AFAIK, this would be (one) of the ways to do that: SomeClassToCastTo object = null; try { SomeClassToCastTo object = SomeClassToCastTo.class.cast(anotherObject); } catch (ClassCas …
1
vote

Does anybody know what encrypting technique is JDeveloper/SQL Developer using to persist credentials?

The length of the hash is 50 hex characters, which is 200 bits, so it may be the the hash of the password with a salt, prepended with the salt, like: salt | hash(salt | password) …
4
votes

What is the difference between Set and List?

A Set cannot contain duplicate elements while a List can. A List (in Java) also implies order. …
4
votes

Does Java not do things asynchronously?

I'm not familiar with that TextIO library, but when calling InputStream.read(), …
3
votes

In Java, is new always new?

Using new will always result in a new object being allocated and created. However, you might be referring to the concept of interning, where objects and stored in a pool and …
7
votes

How to mock a String using mockito?

The problem is the String class in Java is marked as final, so you cannot mock is using traditional mocking frameworks. According to the …
5
votes

What should I look for when improving performance in Java?

In general, just looking at the code base and attempting to improve performance by looking for certain things, does not guarantee that you'll get measurable performance gains. Usually, it's …
1
vote

Subclipse problem: running .java file as Java application

Does the class you're trying to run have a public static void main(String[] args) method signature? …
0
votes

Invoke method accepting multiple arguments with arguments array

Once you have the Method object, you can use getParameterTypes() …
1
vote

Caching of instances

You will definitely have to use some sort of synchronization (either on your class or the underlying data structure) in order to ensure the data is left in a consistent state after method calls. C …
5
votes

Java FileWriter

From the Javadoc, you can use the constructor to specify whether …
3
votes

Error in Java Expression

If you're looking for "logical errors" and if the types are all integers, it's probably better to do: P = (P*x)/y; Because the current expression (IIRC) is equival …
1
vote

What is the memory footprint of a method intensive Java object?

Here's a general guide to determining the memory usage of objects in Java: http://www.javamex.com/tuto …