`
文章列表

标准输入与输出

    博客分类:
  • java
1、从键盘上读入一个字符    try{     char ch=(char)System.in.read();      }catch(IOException e){      .....    }    屏幕会自动阻塞和挂起。等待用户与之交互 2。    try{     BufferedReader br=new BufferedReader(new InputStreamreader(System.in));     System.out.println("请输入一个数据:");     int i=Integer.parseInt(br.readLine());   ...
前提你要把junit.jar加到cp中 然后执行 java junit.swingui.TestRunner 你可以编写许多testCase,如果一次执行多个testCase可以创建testSuite,为了执行testSuite你需要使用testRunner; (1) testCase(测试用例) (2) testSuite(测试集合) (3) testRunner(测试运行器)--执行  testSuite  实际继承BaseTestRunner    Cactus框架就是继承BaseTestRunner,当然你也可以定义自已的testRunner 继承BaseTestRunner. ( ...
今天在研究javamail发信的过程中,出现了一些小问题,现总结如下,以免后来者走些不必要的弯路,先把完整的能够正常运行的代码示例粘贴如下: 发邮件源代码: package com.hyq.test; import java.util.Properties; import javax.mail.*; import javax.mail.internet.*; public class MailExample {   public static void main (String args[]) throws Exception {         String host = " ...
启动 Eclipse,选择“Window -> Preferences”菜单,打开首选项对话框。展开 MyEclipse 下的 Application Servers 节点,点击 WebLogic 9,选中右边的 Enable 单选按钮,启用 WebLogic 服务器。配置如下: ①BEA home directory:C:BEA(假定 WebLogic 安装在 ...
Web Service概述 Web Service的定义 W3C组织对其的定义如下,它是一个软件系统,为了支持跨网络的机器间相互操作交互而设计。Web Service服务通常被定义为一组模块化的API,它们可以通过网络进行调用,来执行远程系统的请求服务 ...
XFire是与Axis 2并列的新一代Web Service框架,通过提供简单的API支持Web Service各项标准协议,帮助你方便快速地开发Web Service应用。 相 对于Axis来说,目前XFire相对受欢迎,加上其提供了和Spring集成的支持,在目前的Web Service开源社 ...
Error 404--Not Found From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1: 10.4.5 404 Not Found The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent. If the server does not wish to make this information available to t ...
Global site tag (gtag.js) - Google Analytics