Guest User

Untitled

a guest
Feb 20th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.45 KB | None | 0 0
  1. private void sendMessage(Float[] _floats){
  2.         try{
  3.             wr.writeDouble((double)_floats[0]);
  4.             wr.writeDouble((double)_floats[1]);
  5.             wr.writeDouble((double)_floats[2]);
  6.             System.out.println("serverdoubles>" + (double)_floats[0] + ", " +(double)_floats[1] + ", " +(double)_floats[2] );
  7.             System.out.println("serverdoubles>" + _floats[0] + ", " +_floats[1] + ", " +_floats[2] );
  8.         }
  9.         catch(Exception ioException){ ioException.printStackTrace(); }
  10.     }
Add Comment
Please, Sign In to add comment