⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mainclass.java

📁 This article describes how to consume Web services in Java 1.5.0 using the new JAX-WS 2.0 API (JSR 2
💻 JAVA
字号:
package com.edujinionline.tutorials.webservices;

/**
 * 
 * MainClass - The entry point of the application.
 * <br/>
 * For terms and usage, please see the LICENSE file provided alongwith or
 * contact <a href='mailto:copyright@edujinionline.com'>copyright@edujinionline.com</a>
 * <br/>
 * <a href='http://www.edujinionline.com'>http://www.edujinionline.com</a>
 * 
 * @author Gaurav Vaish
 * @version 1.0
 * @copyright (C) 2006, Edujini (www.edujinionline.com)
 */
public class MainClass
{
	/**
	 * Entry point of the application
	 * 
	 * @param args
	 *            Arguments to the main method
	 */
	public static void main(String[] args)
	{
		double x = 34.56;
		double y = 45.67;

		double z = BasicWebServicesClient.testAdd(x, y);
		System.out.printf("%f + %f = %f", x, y, z);
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -