Application Demo
文章平均质量分 74
asran
这个作者很懒,什么都没留下…
展开
-
JMail
package com.asran.jmail;import java.util.*;import javax.mail.*;import javax.mail.internet.*;public class Email { protected String to = null; protected String subject = "Email Test"; protected原创 2007-04-03 23:07:00 · 648 阅读 · 0 评论 -
Chat Room
package cy;import java.awt.*;import java.awt.event.*;import java.io.*;import java.net.*;public class ChatRoomServer extends Frame implements Runnable { Panel panel; ScrollPane sPanel; TextAre原创 2007-04-03 22:34:00 · 997 阅读 · 0 评论 -
How to redirect Sysout.out?
Use System.setOut()package io;import java.io.FileOutputStream;import java.io.IOException;import java.io.PrintStream;public class Redirection { public static void main(String args[]) throws IOExcept原创 2007-04-04 13:52:00 · 631 阅读 · 0 评论 -
Degester
mysql oracle.jdbc.driver.OracleDriver com.mysql.jdbc.Driver See JDBC documentation for detail. --> jdbc:m原创 2007-04-03 23:13:00 · 873 阅读 · 0 评论 -
log4j.properties
## LOGGERS ###define a logger named helloAppLogger log4j.rootLogger=DEBUG,console,file## APPENDERS ### define an appender named console, which is set to be a ConsoleAppenderlog4j.appender.console=org.原创 2007-04-12 18:06:00 · 529 阅读 · 0 评论 -
Oracle Commands
1. select table_name from user_tables; //当前用户的表 select table_name from all_tables; //所有用户的表 select table_name from dba_tables; //包括系统表 select table_name原创 2007-04-19 00:37:00 · 713 阅读 · 0 评论 -
一个JNI的小例子
最近要在JAVA程序里调用C++写的.dll文件,要用到JNI技术,找了些资料,自己做了个小例子.步骤如下:JAVA 代码:public class testdll{ static { System.loadLibrary("DLL"); } public native static int get(); public native static void set(int i);转载 2007-05-12 02:25:00 · 6415 阅读 · 3 评论 -
a rmi simple demo
这个例子模拟了一个远程请求对象属性的过程。有一个远程对象Dog在网络上,现在要得到它的名字(strName)属性。程序在客户端设一个存根(Dog_Stub)类,在服务器端启动一个骨架(dog_Skeleton)类,这两个类都实现了Dog接口,Dog_Stub与 Dog_Skeleton通过Socket进行远程通信。当客户程序DogClient向Dog_Stub发出获取名字属性的请求时,D原创 2007-05-12 10:41:00 · 672 阅读 · 0 评论