Posts by brevleq • 251 points
4 posts
-
4
votes2
answers935
viewsA: Javafx Time Mask or Timepicker
I believe that the ideal would be to use the Datepicker of Jfxtras:…
-
1
votes1
answer200
viewsA: Swap attributes from one Object to another
Everything indicates that you need to simply cast (as @mgibsonbr indicated), however, to ensure that no one Classcastexception it is indicated to check if the object instance corresponds to the…
-
6
votes1
answer381
viewsA: Java program that comes with JRE
You can add the JRE (or JDK depending on your application) to your program’s installation directory. To do this, download the JRE in compressed format (tar.gz) and unzip in a directory inside your…
-
1
votes1
answer68
viewsA: Read contents of a netflow package
From what I understand of your question, you want to separate each information according to the format of the netflow package. Then just manipulate an array of bytes: private void…