`
uule
  • 浏览: 6349213 次
  • 性别: Icon_minigender_1
  • 来自: 一片神奇的土地
社区版块
存档分类
最新评论

一个WebService

 
阅读更多

1、取汇率

currencyURL.properties:

AMERICAS=http://www.bloomberg.com/markets/currencies/americas_currencies.html
ASIA/PACIFIC=http://www.bloomberg.com/markets/currencies/asiapac_currencies.html
EUROPE/AFRICA/MIDDLEEAST=http://www.bloomberg.com/markets/currencies/eurafr_currencies.html
YAHOO=http://hk.finance.yahoo.com/currency/convert?amt=1&from=USD&to=

 

代码入口:

GetInternetData getInternetData = new GetInternetData();
		try {
			currencyMaps = getInternetData.getRequestInfo();
		} catch (Exception e) {
			log.error(e.getMessage());
			//return mapping.findForward("fail");
		}

 GetInternetData.java:

 

 

读取配置文件:

/**
	 * 从网站读取数据
	 * @return
	 * @throws Exception
	 */
	public final List<Exchangerate> getRequestInfo() throws Exception {
		//读取配置文件,取得网站路径
		ResourceBundle bundle = ResourceBundle.getBundle("currencyURL");
		Enumeration<String> enums = bundle.getKeys();
		List<Exchangerate> currencyMaps = new ArrayList<Exchangerate>();
		while (enums.hasMoreElements()) {
			String key = enums.nextElement();
			//从网站中取得标签
			if(!key.equals("YAHOO")){
				log.info("==========>"+key);
				String res = getHttpRequestInfo(bundle.getString(key));
				List<Exchangerate> currencyList = getData(res,key);
				currencyMaps.addAll(currencyList);
			}
		}
		return currencyMaps;
	}

 

由URL得到Response:

private final String getHttpRequestInfo(String uri) throws Exception {
	String response = null;
	// Create an instance of HttpClient.
	HttpClient client = new HttpClient();
	// Create a method instance.
	GetMethod method = new GetMethod(uri);

	// Provide custom retry handler is necessary
	HttpMethodParams httpMethodParams = method.getParams();
	httpMethodParams.setParameter(HttpMethodParams.RETRY_HANDLER, new DefaultHttpMethodRetryHandler(3, false));
	
	try {
		int statusCode = client.executeMethod(method);

		if (statusCode != HttpStatus.SC_OK)
			throw new RuntimeException("Httpclient Method failed: "
					+ method.getStatusLine());

		response = method.getResponseBodyAsString();

		String s1 = "<table";
		String e1 = "</table>";
		int stratIndex = response.indexOf(s1);
		int endIndex = response.indexOf(e1, stratIndex) + e1.length();
		String currency = response.substring(stratIndex, endIndex);
		
		return currency;
	} finally {
		method.releaseConnection();
	}
}

 

 

组装数据:

private List<Exchangerate> getData(String response,String urlKey) throws TransformerException{
	List<Exchangerate> currencyMaps = new ArrayList<Exchangerate>();
	
	Document doc = null;
	try {
		DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
		doc = factory.newDocumentBuilder().parse(new InputSource(new StringReader(response)));
	} catch (SAXException e) {
		// TODO Auto-generated catch block
		e.printStackTrace();
	} catch (IOException e) {
		// TODO Auto-generated catch block
		e.printStackTrace();
	} catch (ParserConfigurationException e) {
		// TODO Auto-generated catch block
		e.printStackTrace();
	}
	
	// 找到table的个数tr
	NodeList trNodes =doc.getDocumentElement().getElementsByTagName("tr");
	log.info(trNodes.getLength());
	for(int i=0;i<trNodes.getLength();i++){
		Node node = trNodes.item(i);
		Node theadNode = XPathAPI.selectSingleNode(node, "thead");
		if(null==theadNode){
			NodeList tdNodes = XPathAPI.selectNodeList(node, "td");
			Node tdnode = tdNodes.item(0);
			System.out.println("tdnodes: " + tdnode);
			if(null != tdnode) {
				//if ("CURRENCY".equalsIgnoreCase(tdNodes.item(0).getTextContent().trim())) continue;
				Exchangerate currency = new Exchangerate();
				//将CURRENCY截取为BaseCurrency与TargetCurrency
				String[] cs = tdNodes.item(0).getTextContent().trim().split("[-]");
				currency.setBasecurrency(cs[0]);
				currency.setSellcurrency(cs[1]);
				String amountStr = tdNodes.item(1).getTextContent().trim();
				amountStr = amountStr.replaceAll(",", "");
				currency.setWebExrate(Double.parseDouble(amountStr));
				currency.setArea(urlKey);
				//currency.setUpdatedate(date);
				currencyMaps.add(currency);
			}
		}
	}
	return currencyMaps;
}

 

。。。

 

 

 

 

方式二:

 

package tags;

import java.io.BufferedReader;

public class MainTest {

	/**
	 * @param args
	 */
	public static void main(String[] args) {		
		String fromCurrency = "HKD";
		String toCurrency = "AUD";
		String googleCur = getGoogleCurrency(fromCurrency, toCurrency);
		String yahooCur = getYahooCurrency(fromCurrency, toCurrency);
		System.out.println(googleCur+"\n"+yahooCur);
	}

	static String getGoogleCurrency(String fromCurrency, String toCurrency){
		String rtn = "";
		String strGoogleURL = "http://www.google.com/ig/calculator?hl=en&q=1" + fromCurrency + "%3D%3F" + toCurrency;
		
		try {
		    // Create a URL for the desired page
		    URL url = new URL(strGoogleURL);

		    // Read all the text returned by the server
		    BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream()));
		    String str;
		    while ((str = in.readLine()) != null) {
		    	rtn += str;
		        // str is one line of text; readLine() strips the newline character(s)
		    }
		    in.close();
		} catch (MalformedURLException e) {
		} catch (IOException e) {
		}
		return rtn;			
	}
	static String getYahooCurrency(String fromCurrency, String toCurrency){
		String rtn = "";
		String strYahooURL = "http://finance.yahoo.com/d/quotes.csv?e=.csv&f=sl1d1t1&s=" + fromCurrency + toCurrency + "=X";
		
		try {
		    // Create a URL for the desired page
		    URL url = new URL(strYahooURL);

		    // Read all the text returned by the server
		    BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream()));
		    String str;
		    while ((str = in.readLine()) != null) {
		    	rtn += str;
		        // str is one line of text; readLine() strips the newline character(s)
		    }
		    in.close();
		} catch (MalformedURLException e) {
		} catch (IOException e) {
		}
		return rtn;
	}
}

 

 

。。。

 

 

 

 

 

 

分享到:
评论

相关推荐

    建立一个WebService工程

    ### 建立一个 WebService 工程 在软件开发领域中,WebService 是一种重要的技术手段,用于实现不同系统间的通信。本文将详细介绍如何利用 MyEclipse 6.5 创建 WebService 工程,包括其配置与部署的过程。 #### 一...

    自己做的一个WebService练习

    这个“自己做的一个WebService练习”项目可能是为了帮助初学者理解并实践WebService的基本概念和技术。在这个项目中,你可能会遇到以下几个关键知识点: 1. **SOAP (Simple Object Access Protocol)**:SOAP是用于...

    第一个webservice例子源码

    【标题】"第一个Web服务(WebService)例子源码"提供了初学者深入了解和实践WebService开发的绝佳素材。在本文中,我们将深入探讨这个简单的"Hello World"程序如何工作,以及它如何帮助我们理解WebService的核心概念...

    一个简单的WEBSERVICE 例子

    根据提供的文件信息,本文将详细解释一个简单的 WebService 示例,并深入探讨其中的关键概念和技术细节。 ### 一、WebService 概念 #### 1.1 WebService 定义 WebService 是一种支持通过网络进行调用的服务形式,...

    WebService教程+实例+代码提示功能WebService实例.rar

    开发一个WebService,你需要选择一个编程语言和框架,如Java的JAX-WS或.NET的ASMX。服务端需要定义接口(对应WSDL),实现业务逻辑,并暴露这些服务供外部调用。在处理请求时,服务端会将接收到的SOAP消息解码,执行...

    webservice获取List案例

    在本案例中,我们关注的是一个特定的Web服务类型——WebService,它用于获取一个包含泛型对象的List。这个场景在分布式系统、微服务架构或者跨平台数据共享中非常常见。让我们深入探讨一下相关的知识点。 1. **...

    webservice

    下面是一个简单的WebService示例,该示例展示如何创建一个名为`HelloService`的服务,并将其发布到特定的URL上。 ```java package com.itcast.ws; import javax.jws.WebService; import javax.xml.ws.Endpoint; /...

    WebServiceStudio.zip

    开发者可以使用WSDL文档来了解如何调用一个WebService。 4. UDDI(统一描述、发现和集成):UDDI是一个标准的目录服务,用于发布和查找WebService。服务提供商可以在UDDI注册他们的服务,而消费者则可以通过UDDI...

    C# WebService 客户端 服务器 Json

    假设有一个WebService,提供一个获取用户信息的方法,如下: ```csharp [WebMethod] [ScriptMethod(ResponseFormat = ResponseFormat.Json)] public User GetUser(int userId) { // 从数据库或其他数据源获取用户...

    webservice接口一个或多个附件上传

    本话题将深入探讨如何通过WebService接口实现一个或多个附件的上传功能。 首先,让我们理解WebService的基本原理。WebService是一个自包含、自描述的应用程序,它可以被其他应用程序通过网络调用,不受平台限制。...

    Delphi调用C#的Webservice返回Dataset

    在C#中,创建一个Webservice通常涉及以下步骤: 1. 创建一个新的ASP.NET Web Application项目。 2. 添加一个新的Web Service(ASMX)文件,定义服务方法。 3. 在服务方法中实现数据库操作,如使用ADO.NET的DataSet...

    Android通过webservice连接Sqlserver实例

    1. 创建WebService:使用ASP.NET或Java等技术,在服务器端创建一个WebService接口,该接口将处理来自Android客户端的请求,如HTTP POST或GET请求。接口应包括对数据库的基本操作,如SELECT、INSERT、UPDATE和DELETE...

    webservice服务上传文件

    在这种场景下,Java Axis库是实现WebService的一个常用工具。 Axis是Apache组织开发的一个开源项目,专门用于创建和部署SOAP(简单对象访问协议)服务。SOAP是一种基于XML的协议,用于在Web上交换结构化和类型化的...

    使用Myeclipse 创建WebService 项目服务端

    下面将详细讲解如何使用MyEclipse创建一个WebService项目服务端,以及涉及的关键知识点。 首先,创建一个新项目是第一步。在MyEclipse中,选择"File" -&gt; "New" -&gt; "Dynamic Web Project",输入项目名称并设置相关...

    JS调用WebService实例

    在ASP.NET环境中,创建一个WebService非常简单。开发者通常会创建一个ASMX文件,其中包含一个或多个公共方法,这些方法可以通过HTTP请求被外部访问。例如,我们可以创建一个名为"HelloWorldService.asmx"的服务,...

    Java WebService入门实例

    本篇将详细介绍Java WebService的入门实例,包括其工作原理以及如何创建和测试一个简单的WebService。 1. **WebService工作原理-SOAP** SOAP(Simple Object Access Protocol)是WebService通信的基础,它是一种...

    WebService模型(三种应用技术标准) WebService在Internet网的实战应用

    创建一个WebService服务通常涉及以下步骤: 1. 创建一个ASP.NET Web服务项目,这会生成一个`.asmx`文件。 2. 在`.asmx`文件中定义服务类,并实现所需的方法。这些方法需要使用`[WebMethod]`特性标记,以便它们可以...

    Eclipse下WebService学习.doc

    - 发布与调用:将Java类重命名为`.jws`扩展名,以表示这是一个WebService。启动服务器后,通过浏览器访问`http://localhost:8080/axisdemo/MagicThermometer.jws`,可以查看到发布的WebService。 3. **利用插件...

Global site tag (gtag.js) - Google Analytics