EXT+JSON请求服务

需求:从文本中读取IP地址,子网掩码,网关

<span style="font-size:18px;"><strong>BOOTPROTO="static"
DEVICE="eth0"
ONBOOT="yes"
IPADDR="192.168.1.51"
NETMASK="255.255.255.0"
GATEWAY="192.168.1.1"
DNS1="192.168.1.254"
DNS2="192.168.2.254"</strong></span>


然后将它显示在WEB页面:
1)通过I/O流读出所需要的信息。

<span style="font-size:18px;"><strong>/**
	 * 得到服务IP地址
	 */
	 public void getServerIp(){
			FileInputStream is=null;
			InputStreamReader isr=null;
			String ipaddr=null;
			String netmask=null;
			String gateway=null;

			File file = new File(FILEURL);
	        try {
	              is=new FileInputStream(file);
	              isr= new InputStreamReader(is);
	            BufferedReader in= new BufferedReader(isr);
	            String line=null;
	            while((line=in.readLine())!=null)
	            	//System.out.println(line);
	            if(line.contains("IPADDR"))
	            {
	            	String[] array = line.split("[=]");
	            	 ipaddr = array[1].replace("\"","");
	            	//System.out.println(array[1]+"   ");
	            }
	            else if(line.contains("NETMASK"))
	            {
	            	String[] array = line.split("[=]");
	                netmask = array[1].replace("\"","");
	            }
	            
	            else if(line.contains("GATEWAY"))
	            { 
	            	String[] array = line.split("[=]");
	                gateway = array[1].replace("\"","");
	            }
	           // this.actionWrite("{{},{},{}GATEWAY:111]}")
	            
	        } catch (IOException e) {
	            e.printStackTrace();
	        }finally{
	        	    try {
	        	    	if(isr!=null){
						isr.close();
	        	    	}
	        	    	if(is!=null){
	        	    		is.close();
	        	    	}
					} catch (IOException e) {
						// TODO Auto-generated catch block
						e.printStackTrace();
					}
	        }
 	       String str = "{\"ipaddr\":"+ipaddr+",\"netmask\":"+netmask+",\"gateway\":"+gateway+"}";
	        try {
				JSONObject obj = new JSONObject(str);
				this.actionWrite(obj.toString());
			} catch (JSONException e) {
				logger.error(e);
			}  
	    }</strong></span>


上面这个方法我们怎么理解呢?
其实我们在Web页面上请求发送到一个Action,处理的方法就是上面这个方法



其中核心代码:

<span style="font-size:18px;"><strong>String[] array = line.split("[=]");
ipaddr = array[1].replace("\"","");
String[] array = line.split("[=]");
netmask = array[1].replace("\"","");
String[] array = line.split("[=]");
gateway = array[1].replace("\"","");</strong></span>


读出需要信息后,将它拼出需要的JSON格式:

<span style="font-size:18px;"><strong>String str = "{\"ipaddr\":"+ipaddr+",\"netmask\":"+netmask+",\"gateway\":"+gateway+"}";
JSONObject obj = new JSONObject(str);
this.actionWrite(obj.toString());</strong></span>


下面我们还要看一下这个关键的方法

<span style="font-size:18px;"><strong>/**
	 * 服务端响应请求结果集
	 * 
	 * @param result
	 */
	public void actionWrite(String result) {
		if(result == null){
			result = "";
		}
		HttpServletResponse resp = ServletActionContext.getResponse();
		resp.setContentType("text/json;charset=UTF-8");
		resp.setHeader("Cache-Control", "no-cache");
		PrintWriter pw = null;
		try {
			pw = resp.getWriter();
			pw.write(result);
		} catch (IOException e) {
			throw new EVoucherException("获取http写入流异常" + e.getMessage());
		} finally {
			if (pw != null) {
				pw.close();
			}
		}
	}
</strong></span>




2)接下来我们看看前台页面时怎么请求的?(JSP+EXT+JSON)
在页面处,让页面已加载就开始触发方法:onload();


<span style="font-size:18px;"><strong><script type="text/javascript">
	
		Ext.onReady(function() {
			Ext.QuickTips.init();
			Ext.create('Ext.container.Viewport',{
						id : 'ipSetFrame',
						layout : 'border',
						items : [tbarPanel,centerPanel]
			});
		});
	</script>
  </head>
  <body οnlοad="init();">
  </body>
</html>
</strong></span>


然后我们看看init()方法怎么实现的。
(这个方法是自己非常不清楚的地方,涉及到Ext的ajax请求,需要理解体会)

<span style="font-size:18px;"><strong>function init(){
	Ext.Ajax.request({
	    url : '/Portal/user/serviceManage_getServerIp.action',
	    method : 'POST',
	    type:'json',
		callback : function (options,success,response){
       	if(success){		
		    var text = Ext.JSON.decode(response.responseText); //获取action里的rs json
		    Ext.getCmp("ipaddr").setValue(text.ipaddr);
		    Ext.getCmp("netmask").setValue(text.netmask);
		    Ext.getCmp("gateway").setValue(text.gateway);
	    }
	    }
});</strong></span>


这个Ext.Ajax.request的请求可以从官网上看看API,一定要理解。


下面这行代码是最重要的,取得你从action拼的JSON字符串
var text = Ext.JSON.decode(response.responseText); //获取action里的rs json




然后将值设置到TextField中OK。





评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

ItJavawfc

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值