我经常由于要用一些包,但是有时找不到,比较浪费时间,所以把最近的一些包分享到这儿,方便别人的时候也方便自己。我会不定时更新,如果你有什么比较好的包,可以再评论中留言给我哦。我为人人,人人为我。

       

         


               使用示例: [java] 


  1. import java.sql.Connection;
  2. import java.sql.DriverManager;
  3. import java.sql.SQLException;

  4. public class MyDatabase {

  5. private static String driver = "oracle.jdbc.driver.OracleDriver";

  6. private static String url = "jdbc:oracle:thin:@127.0.0.1:1521:orcl";
  7. private static String user= "sjbase";
  8. private static String pw= "password";

  9. /**
  10. * @param args
  11. * @throws SQLException
  12. * @throws ClassNotFoundException
  13. */
  14. public static Connection getConnection() throws SQLException, ClassNotFoundException
  15. {
  16. Class.forName(driver);
  17. Connection conn=null;
  18. conn = DriverManager.getConnection(url, user, pw);
  19. return conn;
  20. }

  21. }


             使用示例:                [java] 

  1. Service service = new Service();
  2. Call call = (Call) service.createCall();
  3. call.setTargetEndpointAddress(this.getEndpoint());
  4. //设置操作名
  5. call.setOperationName("getSchoolInfo");
  6. //设置参数
  7. call.addParameter("username",org.apache.axis.encoding.XMLType.XSD_STRING,javax.xml.rpc.ParameterMode.IN);
  8. call.addParameter("userpassword",org.apache.axis.encoding.XMLType.XSD_STRING,javax.xml.rpc.ParameterMode.IN);
  9. //设置返回值类型
  10. call.setReturnType(org.apache.axis.encoding.XMLType.XSD_STRING);
  11. //获取结果
  12. result =  (String)call.invoke(new Object[]{this.getUsername(),this.getPassword()});