DbAccount.java
上传用户:haojie1228
上传日期:2022-08-08
资源大小:347k
文件大小:1k
源码类别:

通讯/手机编程

开发平台:

Java

  1. package poker;
  2. /**
  3.  * <p>Title: </p>
  4.  * <p>Description: </p>
  5.  * <p>Copyright: Copyright (c) 2004</p>
  6.  * <p>Company: </p>
  7.  * @author not attributable
  8.  * @version 1.0
  9.  */
  10. import java.io.*;
  11.  class DbAccount {
  12.   static String account;
  13.   static String password;
  14.   static byte[] recordByte=new byte[16];
  15.   public static void set(String account,String password){
  16.     ByteArrayOutputStream baos=new ByteArrayOutputStream();
  17.     DataOutputStream dos=new DataOutputStream(baos);
  18.     OutputStream os;
  19.     OutputStreamWriter osw=new OutputStreamWriter(dos);
  20.     try{
  21.       osw.flush();
  22.       dos.writeUTF(account);
  23.       System.out.println("..."+account+password);
  24.       dos.writeUTF(password);
  25.       dos.flush();
  26.       baos.flush();
  27.       recordByte=baos.toByteArray();
  28.       osw.close();
  29.       dos.close();
  30.       baos.close();
  31.     }catch (IOException e){
  32.     //
  33.     }
  34.   }
  35.   public static void get(byte[] b){
  36.     DataInputStream dis=new DataInputStream(new ByteArrayInputStream(b));
  37.     InputStreamReader isr=new InputStreamReader(dis);
  38.     try{
  39.       //ServiceConnection  ss=new ServiceConnection(this,this.se);
  40.       account=dis.readUTF();
  41.       password=dis.readUTF();
  42.       isr.close();
  43.       dis.close();
  44.     }catch (IOException e){
  45.       //
  46.     }
  47.   }
  48. }