本文实例讲述了android编程之ip2id程序。分享给大家供大家参考。具体分析如下:
一、说明:
公司一个项目中需要给一系列网络设备分配id号,id是根据ip算出来的,算法如下:
id共3个字节,高字节:从机号:1-31;后两个字节为ip号的最后两个字节.如ip为192.168.0.240的一台设备从机号为31.则id号为31,00,240换算成十进制为2031856.
二、源码:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
package com.id2ip;
import android.app.activity;
import android.os.bundle;
import android.widget.*;
import android.view.*;
public class id2ip extends activity {
/** called when the activity is first created. */
private textview text;
private button button;
@override
public void oncreate(bundle savedinstancestate) {
super .oncreate(savedinstancestate);
setcontentview(r.layout.main);
//获得文本框id
text = (textview)findviewbyid(r.id.edittext1);
//获得按钮id
button = (button)findviewbyid(r.id.button1);
//重载按键监听方法
button.setonclicklistener( new button.onclicklistener()
{
@override
public void onclick(view v)
{
//获得输入框文本
charsequence str = text.gettext();
do
{
//判断输入是否有效
//如果输入位数不为8位,则无效
if (str.length() != 8 )
{
text.settext( "输入位数必须为8位" );
break ;
}
//输入的字符不为数字,则无效
int i = 0 ;
for (i = 0 ;i < 8 ;i++)
{
if ((str.charat(i) < '0' ) || (str.charat(i) > '9' ))
{
break ;
}
}
if (i < 8 )
{
text.settext( "输入字符必须为数字" );
break ;
}
string str_temp = str.tostring();
//转换为数字
long num = long .parselong(str_temp);
//ip2id
short slave_num = ( short )(num / 1000000 );
num = num % 1000000 ;
short ip1 = ( short )(num / 1000 );
num = num % 1000 ;
short ip0 = ( short )num;
long num_temp = ip0;
num_temp |= ip1 << 8 ;
num_temp |= slave_num << 16 ;
str_temp = long .tostring(num_temp);
str = str_temp;
text.settext(str);
} while ( false );
}
});
}
}
|
三、注意:
程序中需要注意的地方有3处:
① 字符串转数字,可以用方法long.parselong();
② 在android中常用的捕捉空间字符串的类是charsequence,而java中常用的字符串类为string,则需要转换.
1.charsequence转string
1
2
|
charsequence str;
string str_temp = str.tostring();
|
2.string转charsequence这个直接等于就可以了:
1
|
str = str_temp;
|
③ java中没有无符号即unsigned类型,所有类型都是带符号的
希望本文所述对大家的android程序设计有所帮助。