Questions tagged as 'java'

2
answers

ObjectOutputStream only saves the first object

I'm trying to manipulate a file in Byte with Java. In writing the file I have the following code: FileOutputStream fos = new FileOutputStream("files\Produtos.dat",true); ObjectOutputStream oos = new ObjectOutputStream(fos); oos.writeObject(P);...
asked by 08.02.2014 / 03:30
2
answers

Change nodes ArrayList

If I have a ArrayList<Integer> listInt for example, suppose that ArrayList has: int a, int b, int c; //a = 2 b=3 c=4 and then I change the value of a , b and c eg to a=1 b=2 c=3 Because I ha...
asked by 08.02.2014 / 06:48
3
answers

How to make a Submenu in Action Bar?

There was a need to create a menu with submenu in action bar , equal to this: Couldyouhelpme?MyXMLmenu:<menuxmlns:android="http://schemas.android.com/apk/res/android" xmlns:apk="http://schemas.android.com/apk/res-auto"&...
asked by 13.03.2014 / 13:30
1
answer

Custom auto increment

I have to generate an auto increment of type "000"+id , but I can not get to something concrete, my base is this below, I just wanted a light how to do it, I do not need the answer itself. > @Id @GeneratedValue...
asked by 15.10.2014 / 19:09
1
answer

Why does String hashCode () in Java use 31 as a multiplier?

In Java, the hash code for an object String is computed as s[0]*31^(n-1) + s[1]*31^(n-2) + ... + s[n-1] using integer arithmetic, where s[i] is the i -th character of the string, n is the length of the string,...
asked by 02.01.2019 / 17:54
2
answers

How to compare Date class with System.currentTimeMillis () in Java?

How to compare if a Date object, for example "2014-01-29 00:00:00" is greater than the current system date, for example System.currentTimeMillis() in Java? I'd like to do something like the snippet below, but it did not work: if (obj...
asked by 29.01.2014 / 19:41
1
answer

Is it possible to call internal method (without visibility operator) from a class inherited from another package?

Problem I'm trying to create some extra behaviors on some native Android components. For this I am creating a class above the Android component and rewriting some situations that I want to behave differently, and I came across a s...
asked by 29.07.2014 / 20:20
2
answers

What is the concept and how to implement an anemic domain model?

I would like to resolve the following doubts about the Anemic Model: What is the Anemic Domain Model ? What are the implementation differences of this template compared to the Object Oriented Model ? If possible, present a small exampl...
asked by 15.10.2014 / 13:23
1
answer

Cryptography using piles in java

In an encrypted message using Stack to invert each word of a String and using chatAt (int) to get characters specific to it, I had the following problem, when if you put a character on the stack, you can not use primitive types as a paramete...
asked by 13.11.2015 / 00:04
1
answer

How to get a random number in Kotlin?

How can I get a random number between two values? As ruby does with rand(0..n)     
asked by 26.01.2018 / 19:48