Parsing Integers

Integer-data is probably the single most used item in AMF3. The implementation of it is a little complicated so this page includes a reference implementation of parsing the AMF3 integer-data type:

private int readAMF3Integer() throws IOException {
    int n = 0;
    int b = in.readUnsignedByte();
    int result = 0;

    while ((b & 0x80) != 0 && n < 3) {
        result <<= 7;
        result |= (b & 0x7f);
        b = in.readUnsignedByte();
        n++;
    }
    if (n < 3) {
        result <<= 7;
        result |= b;
    } else {
    	/* Use all 8 bits from the 4th byte */
    	result <<= 8;
    	result |= b;

    	/* Check if the integer should be negative */
    	if (result > AMF3_MAX_VALUE) {
    		/* and extend the sign bit */
    		result -= (1 << 29);
    	}
    }

    return result;
}

Discussion

5656, 2012/03/23 23:04
Cheap NFL,NBA,MLB,NHL [url=http://www.annajerseys.com/]Jerseys From China[/url].[url=http://www.annajerseys.com/]China Jerseys[/url],[url=http://www.annajerseys.com/]Sports Jerseys China[/url],[url=http://www.annajerseys.com/nfl-jerseys-c-1.html]NFL Jerseys China[/url],[url=http://www.annajerseys.com/nba-]NBA Jerseys China[/url],NHL Jerseys

China,[url=http://www.annajerseys.com/nba-jerseys-c-84.html]MLB Jerseys China[/url],NFL jerseys For Sale

online.All Our Jerseys Are Sewn On and Directly From Chinese Jerseys Factory
[/pre]
[pre]
We Are Professional China Brand Wholesaler,[url=http://www.anna-wholesale.com/brand-shoes-c-380.html]Wholesale Brand Shoes[/url],Handbags,[url=http://www.anna]Sports Jerseys China[/url],Jewelry,Hats,[url=http://www.anna-]Sunglasses From China[/url],Cheap China

Wholesael,[url=http://www.anna-wholesale.com]Wholesale From China[/url],Free Shipping,Cheap Price,7 Days

Deliver
[/pre]

Best Converse Online Store From UK,Sale 2011 Newest [url=http://www.sale-converse.com/]Converse All Stars[/url],[url=http://www.sale-converse.com/converse-flag-shoes-c]Converse Flag Shoes[/url],Black Converse,White Converse,Navy Converse And So on,[url=http://www.sale-]Converse UK[/url],Free Shipping
[/pre]

We are professional jerseys manufacturer from china,wholesal

sports [url=http://www.anna-jersey.com]Jerseys From China[/url],[url=http://www.anna-jersey.com/nfl-jerseys-c-]NFL jerseys China[/url],[url=http://www.anna-jersey.com/nhl-jerseys-c-882.html]NHL Jerseys China[/url],[url=http://www.anna-jersey.com/nba-jerseys-c-821.html]NBA Jerseys China[/url],[url=http://www.anna-jersey.com/mlb-]MLB Jerseys China[/url],[url=http://www.anna-jersey.com/]China Jerseys[/url],Free

Shipping
[/pre]
[pre]
[url=http://www.fitflop-uk.com/]fitflops sale UK[/url] [url=http://www.fitflop-]fitflop sale[/url]
[/pre]

[url=http://www.china4jersey.com/]Wholesale Jerseys From China[/url],[url=http://www.china4jersey.com/]Wholesale Jerseys[/url],[url=http://www.china4jersey.com/]China Jerseys[/url],NFL

Jerseys China Paypal,NHL Jerseys China Paypal,Chinese Jerseys factory,Sewn On Jerseys,Accept Paypal,Free Shipping
[/pre]
Enter your comment
 
 
documentation/amf3/parsing_integers.txt · Last modified: 2012/05/22 15:45 by 83.108.61.126
 
Recent changes RSS feed Donate Powered by PHP Valid XHTML 1.0 Valid CSS Driven by DokuWiki