Utility for byte swapping of all java data types : Binary Bit « Language Basics « Java

Java
1. 2D Graphics GUI
2. 3D
3. Advanced Graphics
4. Ant
5. Apache Common
6. Chart
7. Class
8. Collections Data Structure
9. Data Type
10. Database SQL JDBC
11. Design Pattern
12. Development Class
13. EJB3
14. Email
15. Event
16. File Input Output
17. Game
18. Generics
19. GWT
20. Hibernate
21. I18N
22. J2EE
23. J2ME
24. JDK 6
25. JNDI LDAP
26. JPA
27. JSP
28. JSTL
29. Language Basics
30. Network Protocol
31. PDF RTF
32. Reflection
33. Regular Expressions
34. Scripting
35. Security
36. Servlets
37. Spring
38. Swing Components
39. Swing JFC
40. SWT JFace Eclipse
41. Threads
42. Tiny Application
43. Velocity
44. Web Services SOA
45. XML
Java Tutorial
Java Source Code / Java Documentation
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java » Language Basics » Binary BitScreenshots 
Utility for byte swapping of all java data types
 

/*
 * (C) 2004 - Geotechnical Software Services
 
 * This code is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public 
 * License as published by the Free Software Foundation; either 
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This code is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public 
 * License along with this program; if not, write to the Free 
 * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, 
 * MA  02111-1307, USA.
 */
//package no.geosoft.cc.util;



/**
 * Utility class for doing byte swapping (i.e. conversion between
 * little-endian and big-endian representations) of different data types.
 * Byte swapping is typically used when data is read from a stream 
 * delivered by a system of different endian type as the present one.
 
 @author <a href="mailto:jacob.dreyer@geosoft.no">Jacob Dreyer</a>
 */   
public class ByteSwapper
{
  /**
   * Byte swap a single short value.
   
   @param value  Value to byte swap.
   @return       Byte swapped representation.
   */
  public static short swap (short value)
  {
    int b1 = value & 0xff;
    int b2 = (value >> 80xff;

    return (short) (b1 << | b2 << 0);
  }

  

  /**
   * Byte swap a single int value.
   
   @param value  Value to byte swap.
   @return       Byte swapped representation.
   */
  public static int swap (int value)
  {
    int b1 = (value >>  00xff;
    int b2 = (value >>  80xff;
    int b3 = (value >> 160xff;
    int b4 = (value >> 240xff;

    return b1 << 24 | b2 << 16 | b3 << | b4 << 0;
  }

  

  /**
   * Byte swap a single long value.
   
   @param value  Value to byte swap.
   @return       Byte swapped representation.
   */
  public static long swap (long value)
  {
    long b1 = (value >>  00xff;
    long b2 = (value >>  80xff;
    long b3 = (value >> 160xff;
    long b4 = (value >> 240xff;
    long b5 = (value >> 320xff;
    long b6 = (value >> 400xff;
    long b7 = (value >> 480xff;
    long b8 = (value >> 560xff;

    return b1 << 56 | b2 << 48 | b3 << 40 | b4 << 32 |
           b5 << 24 | b6 << 16 | b7 <<  | b8 <<  0;
  }
  

  
  /**
   * Byte swap a single float value.
   
   @param value  Value to byte swap.
   @return       Byte swapped representation.
   */
  public static float swap (float value)
  {
    int intValue = Float.floatToIntBits (value);
    intValue = swap (intValue);
    return Float.intBitsToFloat (intValue);
  }

  

  /**
   * Byte swap a single double value.
   
   @param value  Value to byte swap.
   @return       Byte swapped representation.
   */
  public static double swap (double value)
  {
    long longValue = Double.doubleToLongBits (value);
    longValue = swap (longValue);
    return Double.longBitsToDouble (longValue);
  }


  
  /**
   * Byte swap an array of shorts. The result of the swapping
   * is put back into the specified array.
   *
   @param array  Array of values to swap
   */
  public static void swap (short[] array)
  {
    for (int i = 0; i < array.length; i++)
      array[i= swap (array[i]);
  }

  
  
  /**
   * Byte swap an array of ints. The result of the swapping
   * is put back into the specified array.
   
   @param array  Array of values to swap
   */
  public static void swap (int[] array)
  {
    for (int i = 0; i < array.length; i++)
      array[i= swap (array[i]);
  }


  
  /**
   * Byte swap an array of longs. The result of the swapping
   * is put back into the specified array.
   
   @param array  Array of values to swap
   */
  public static void swap (long[] array)
  {
    for (int i = 0; i < array.length; i++)
      array[i= swap (array[i]);
  }


  
  /**
   * Byte swap an array of floats. The result of the swapping
   * is put back into the specified array.
   
   @param array  Array of values to swap
   */
  public static void swap (float[] array)
  {
    for (int i = 0; i < array.length; i++)
      array[i= swap (array[i]);
  }


  
  /**
   * Byte swap an array of doubles. The result of the swapping
   * is put back into the specified array.
   
   @param array  Array of values to swap
   */
  public static void swap (double[] array)
  {
    for (int i = 0; i < array.length; i++)
      array[i= swap (array[i]);
  }
}


           
         
  
Related examples in the same category
1. Bitwise DemoBitwise Demo
2. Binary Digits
3. Using the bitwise operatorsUsing the bitwise operators
4. Bitwise complement (~): inverts ones and zeroes in a number
5. Convert a number to negative and back
6. Bitwise AND (&)
7. Bitwise OR (|)
8. Bitwise XOR (^)
9. Left shift (<<)
10. Performing Bitwise Operations on a Bit Vector
11. Converting Between a BitSet and a Byte Array
12. Returns a byte array of at least length 1
13. Shift to the left
14. Signed shift to the right
15. Unsigned shift to the right
16. Bit-level unpacking of floating-point data
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.