Here you can find the source of swapInt(int i)
public static int swapInt(int i)
//package com.java2s; /* //from www . j a va 2s . c om * Developed by Marc Schoenefeld <marc.schoenefeld@gmx.org> * Updates by Corey Benninger, Max Sobell, Zach Lanier of Intrepidus Group * {corey.benninger,max.sobell,zach.lanier}@intrepidusgroup.com * * Copyright (C) 2009 Marc Schoenefeld <http://www.illegalaccess.org> * * This file is a part of undx. * * This project is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This project 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 General Public License for more details. * * You should have received a copy of the GNU 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 */ public class Main { public static int swapInt(int i) { int a = i % 256; int b = i / 256; return a * 256 + b; } }