bjzhong25
bjzhong25
关注数: 22
粉丝数: 40
发帖数: 165
关注贴吧数: 4
求教求教,电子学中能够升华到主人翁精神这种哲理性的定律 求教求教,电子学中能够升华到主人翁精神这种哲理性的定律
win10周年更新后任务栏的时间和通知图标能不能换一下 让时间在最右下角
【音乐求助】喜马拉雅的'瞬间秒杀别人听力技巧4'的2:35秒背景音 【音乐求助】喜马拉雅的'瞬间秒杀别人听力技巧4'的2:35秒背景音乐是啥啊?一首英文歌~~
请问你们在哪里看的直播,有咩有除了乐视的渠道? 请问你们用电脑和手机在哪里看直播,我用电脑和手机的乐视都刷不出来(网速绝对没问题)。有没有别的渠道看直播?
请问蛇口附近的人都在哪儿踢球? 请问蛇口附近的人都在哪儿踢球?
请问蛇口附近有什么足球场吗,大家都在哪儿踢球? 最好是免费的,
请问 gre阅读中,看见选项中哪些词那个选项就极有可能会是正确的 请问 gre阅读中,看见选项中哪些词那个选项就极有可能会是正确的 比如说qulify就是,还有其他吗?
synaptics触摸板驱动求解 我想问一下synaptics官网里有Windows 10 PS/2 and SMBus Devices v19.0.19.1 和Windows 10 I2C Devices v19.0.19.1 两种触摸板驱动,想知道自己电脑属于哪种,怎么解决?
你们知道nba2k14哪里还能下载? 你们知道nba2k14哪里还能下载? x宝里面有一家,但是2k14已经下架了,不知道用账号还能不能下载
求NBA2K14账号 O(∩_∩)O谢谢
我用触摸板滑动Chrome界面之后,键盘快捷键操作就不能用了 我用触摸板滑动Chrome界面之后,键盘快捷键操作就不能用了,这是为啥。只有用鼠标再单击一下一面才可以再用快捷键。。。好像用了触摸板焦点就转移了。。。
求问触摸屏的机器用win10 和非触摸的有什么功能上的区别 还有在应用商店下载使用的软件在任务栏能不显示吗?
足球鞋的鞋垫磨薄了怎么办? 足球鞋的鞋垫磨薄了怎么办?, 尤其是前脚掌那块骨头那里。 看鞋垫的时候发现那里比较陷下去,而且鞋垫拿不出来,不想换鞋。有什么好方法么
帮我用戴维南定理算一下这个答案是多少,谢谢
请高手帮我算算这个大难是多少
帮我算算这 个答案是多少
matlab for循环的疑问 、 这个运行结果只显示出M=4的figure,怎么回事?
【南科公益】致未来的你
不会做java用户登陆和注册啊,求大神帮忙 把自己写的两个界面奉上,求补全 登陆: import java.awt.Color; public class Login implements java.io.Serializable{ public String userName; public String passWord; public JFrame frmLogin; public JTextField textField; public JPasswordField passwordField; /** * Launch the application. */ public static void main(String[] args) { EventQueue.invokeLater(new Runnable() { public void run() { try { Login window = new Login(); window.frmLogin.setVisible(true); } catch (Exception e) { e.printStackTrace(); } } }); } /** * Create the application. */ public Login() { initialize(); } /** * Initialize the contents of the frame. */ public void initialize() { frmLogin = new JFrame(); frmLogin.setTitle("Login"); frmLogin.getContentPane().setBackground(Color.DARK_GRAY); frmLogin.setBounds(100, 100, 419, 302); frmLogin.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frmLogin.getContentPane().setLayout(null); frmLogin.setLocationRelativeTo(null); frmLogin.setAlwaysOnTop(true); frmLogin.setResizable(false); JLabel lblNewLabel = new JLabel("Login"); lblNewLabel.setFont(new Font("Algerian", Font.BOLD, 49)); lblNewLabel.setForeground(Color.GREEN); lblNewLabel.setBounds(24, 25, 184, 41); frmLogin.getContentPane().add(lblNewLabel); JLabel lblNewLabel_1 = new JLabel("Username"); lblNewLabel_1.setFont(new Font("Andalus", Font.PLAIN, 23)); lblNewLabel_1.setForeground(Color.GREEN); lblNewLabel_1.setBounds(72, 92, 95, 41); frmLogin.getContentPane().add(lblNewLabel_1); JLabel lblPassword = new JLabel("Password"); lblPassword.setFont(new Font("Andalus", Font.PLAIN, 23)); lblPassword.setForeground(Color.GREEN); lblPassword.setBounds(82, 143, 87, 36); frmLogin.getContentPane().add(lblPassword); textField = new JTextField(); textField.setBackground(Color.LIGHT_GRAY); textField.setBounds(190, 105, 119, 21); frmLogin.getContentPane().add(textField); textField.setColumns(10); passwordField = new JPasswordField(); passwordField.setEchoChar('*'); passwordField.setBackground(Color.LIGHT_GRAY); passwordField.setBounds(190, 154, 119, 21); frmLogin.getContentPane().add(passwordField); JButton btnLogin = new JButton("Login"); btnLogin.setForeground(Color.WHITE); btnLogin.setFont(new Font("Bernard MT Condensed", Font.PLAIN, 12)); btnLogin.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent arg0) { } }); btnLogin.setBackground(Color.DARK_GRAY); btnLogin.setBounds(104, 208, 75, 21); frmLogin.getContentPane().add(btnLogin); JButton btnRegister = new JButton("Register"); btnRegister.setForeground(Color.WHITE); btnRegister.setFont(new Font("Bernard MT Condensed", Font.PLAIN, 12)); btnRegister.setBackground(Color.DARK_GRAY); btnRegister.setBounds(212, 207, 81, 21); frmLogin.getContentPane().add(btnRegister); } 注册: import java.awt.Color; import java.awt.EventQueue; import java.awt.Font; import java.util.ArrayList; import javax.swing.JButton; import javax.swing.JCheckBox; import javax.swing.JFrame; import javax.swing.JLabel; import javax.swing.JPasswordField; import javax.swing.JTextField; import java.awt.event.ActionListener; import java.awt.event.ActionEvent; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.io.ObjectInputStream; import java.io.ObjectOutputStream; public class Register { ArrayList<Login> list = new ArrayList<Login>(); private JFrame frmRegister; private JTextField textField; private JTextField textField_1; private JTextField textField_2; private JTextField textField_3; private JTextField textField_4; private JTextField textField_5; private JTextField textField_6; private JPasswordField passwordField; private JPasswordField passwordField_1; /** * Launch the application. */ public static void main(String[] args) { EventQueue.invokeLater(new Runnable() { public void run() { try { Register window = new Register(); window.frmRegister.setVisible(true); } catch (Exception e) { e.printStackTrace(); } } }); } /** * Create the application. */ public Register() { initialize(); } /** * Initialize the contents of the frame. */ private void initialize() { frmRegister = new JFrame(); frmRegister.setTitle("Register"); frmRegister.setResizable(false); frmRegister.getContentPane().setBackground(Color.DARK_GRAY); frmRegister.setLocationRelativeTo(null); frmRegister.setBounds(100, 100, 540, 598); frmRegister.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frmRegister.getContentPane().setLayout(null); JLabel lblRegister = new JLabel("Register"); lblRegister.setForeground(Color.GREEN); lblRegister.setFont(new Font("Algerian", Font.BOLD, 49)); lblRegister.setBounds(63, 30, 257, 41); frmRegister.getContentPane().add(lblRegister); JLabel lblUsername = new JLabel("username"); lblUsername.setForeground(Color.GREEN); lblUsername.setFont(new Font("Andalus", Font.PLAIN, 23)); lblUsername.setBounds(154, 98, 95, 23); frmRegister.getContentPane().add(lblUsername); JLabel lblPassword = new JLabel("password"); lblPassword.setForeground(Color.GREEN); lblPassword.setFont(new Font("Andalus", Font.PLAIN, 23)); lblPassword.setBounds(161, 132, 88, 23); frmRegister.getContentPane().add(lblPassword); JLabel lblPasswordComfirmation = new JLabel("password comfirmation"); lblPasswordComfirmation.setForeground(Color.GREEN); lblPasswordComfirmation.setFont(new Font("Andalus", Font.PLAIN, 23)); lblPasswordComfirmation.setBounds(28, 165, 221, 23); frmRegister.getContentPane().add(lblPasswordComfirmation); JLabel lblEmail = new JLabel("e-mail"); lblEmail.setForeground(Color.GREEN); lblEmail.setFont(new Font("Andalus", Font.PLAIN, 23)); lblEmail.setBounds(187, 229, 62, 23); frmRegister.getContentPane().add(lblEmail); JLabel lblQq = new JLabel("QQ"); lblQq.setForeground(Color.GREEN); lblQq.setFont(new Font("Andalus", Font.PLAIN, 23)); lblQq.setBounds(215, 262, 34, 23); frmRegister.getContentPane().add(lblQq); JLabel lblGrade = new JLabel("grade"); lblGrade.setForeground(Color.GREEN); lblGrade.setFont(new Font("Andalus", Font.PLAIN, 23)); lblGrade.setBounds(195, 361, 54, 23); frmRegister.getContentPane().add(lblGrade); JLabel lblClass = new JLabel("class"); lblClass.setForeground(Color.GREEN); lblClass.setFont(new Font("Andalus", Font.PLAIN, 23)); lblClass.setBounds(206, 328, 43, 23); frmRegister.getContentPane().add(lblClass); JLabel lblStudentId = new JLabel("student ID"); lblStudentId.setForeground(Color.GREEN); lblStudentId.setFont(new Font("Andalus", Font.PLAIN, 23)); lblStudentId.setBounds(150, 394, 99, 23); frmRegister.getContentPane().add(lblStudentId); JLabel lblTel = new JLabel("telephone"); lblTel.setForeground(Color.GREEN); lblTel.setFont(new Font("Andalus", Font.PLAIN, 23)); lblTel.setBounds(167, 295, 82, 23); frmRegister.getContentPane().add(lblTel); textField = new JTextField(); textField.setBounds(295, 103, 147, 19); frmRegister.getContentPane().add(textField); textField.setColumns(10); textField_1 = new JTextField(); textField_1.setColumns(10); textField_1.setBounds(295, 234, 147, 19); frmRegister.getContentPane().add(textField_1); textField_2 = new JTextField(); textField_2.setColumns(10); textField_2.setBounds(295, 266, 147, 19); frmRegister.getContentPane().add(textField_2); textField_3 = new JTextField(); textField_3.setColumns(10); textField_3.setBounds(295, 300, 147, 19); frmRegister.getContentPane().add(textField_3); textField_4 = new JTextField(); textField_4.setColumns(10); textField_4.setBounds(295, 333, 147, 19); frmRegister.getContentPane().add(textField_4); textField_5 = new JTextField(); textField_5.setColumns(10); textField_5.setBounds(295, 366, 147, 19); frmRegister.getContentPane().add(textField_5); textField_6 = new JTextField(); textField_6.setColumns(10); textField_6.setBounds(295, 399, 147, 19); frmRegister.getContentPane().add(textField_6); passwordField = new JPasswordField(); passwordField.setEchoChar('*'); passwordField.setBounds(295, 136, 147, 19); frmRegister.getContentPane().add(passwordField); passwordField_1 = new JPasswordField(); passwordField_1.setEchoChar('*'); passwordField_1.setBounds(295, 170, 147, 19); frmRegister.getContentPane().add(passwordField_1); JButton btnCreat = new JButton("Creat"); btnCreat.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { /*serialization(textField.getText() ,passwordField.getText() ); */ /* String str = e.getActionCommand(); if ("Creat".equals(str)) { Login user = new Login(); user.setUserName(textField.getText()); user.setPassWord(textField_1.getText()); //user.setEmail(textField_3.getText()); String rePassWord = textField_2.getText(); if (!(user.getPassWord().equalsIgnoreCase(rePassWord))) { textField_1.setText("密码输入错误"); textField_2.setText("密码输入错误"); } else { frmRegister.setTitle("Successful registration" + "Welcome" + user.getUserName()); jtf2.setText("******"); jtf3.setText("******"); list.add(user); } } else if ("登录".equals(str)) { try { readFromFile(); } catch (Exception e1) { e1.printStackTrace(); } } */} }); btnCreat.setForeground(Color.WHITE); btnCreat.setBackground(Color.DARK_GRAY); btnCreat.setFont(new Font("Bernard MT Condensed", Font.PLAIN, 12)); btnCreat.setBounds(237, 480, 62, 23); frmRegister.getContentPane().add(btnCreat); JCheckBox chckbxAgreeToThe = new JCheckBox("agree to the Teddy Services Agreement and privacy and cookies statement."); chckbxAgreeToThe.setForeground(Color.WHITE); chckbxAgreeToThe.setFont(new Font("Bernard MT Condensed", Font.PLAIN, 12)); chckbxAgreeToThe.setBackground(Color.DARK_GRAY); chckbxAgreeToThe.setBounds(93, 442, 397, 23); frmRegister.getContentPane().add(chckbxAgreeToThe); JLabel label = new JLabel("------------------------------------------------------------------------------------------------------"); label.setForeground(Color.WHITE); label.setBounds(-28, 198, 636, 15); frmRegister.getContentPane().add(label); } public void serialization(String username ,String Password ){ ObjectOutputStream oos=null; try { oos=new ObjectOutputStream(new FileOutputStream("D:\\Register.txt")); User use=new User(username ,Password); oos.writeObject(use); oos.flush(); } catch (FileNotFoundException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); }finally{ try { if(oos!=null) oos.close(); } catch (IOException e) { e.printStackTrace(); } } } }
不会做java用户登陆和注册啊,求大神帮忙 把自己写的两个界面奉上,求补全 登陆: import java.awt.Color; public class Login implements java.io.Serializable{ public String userName; public String passWord; public JFrame frmLogin; public JTextField textField; public JPasswordField passwordField; /** * Launch the application. */ public static void main(String[] args) { EventQueue.invokeLater(new Runnable() { public void run() { try { Login window = new Login(); window.frmLogin.setVisible(true); } catch (Exception e) { e.printStackTrace(); } } }); } /** * Create the application. */ public Login() { initialize(); } /** * Initialize the contents of the frame. */ public void initialize() { frmLogin = new JFrame(); frmLogin.setTitle("Login"); frmLogin.getContentPane().setBackground(Color.DARK_GRAY); frmLogin.setBounds(100, 100, 419, 302); frmLogin.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frmLogin.getContentPane().setLayout(null); frmLogin.setLocationRelativeTo(null); frmLogin.setAlwaysOnTop(true); frmLogin.setResizable(false); JLabel lblNewLabel = new JLabel("Login"); lblNewLabel.setFont(new Font("Algerian", Font.BOLD, 49)); lblNewLabel.setForeground(Color.GREEN); lblNewLabel.setBounds(24, 25, 184, 41); frmLogin.getContentPane().add(lblNewLabel); JLabel lblNewLabel_1 = new JLabel("Username"); lblNewLabel_1.setFont(new Font("Andalus", Font.PLAIN, 23)); lblNewLabel_1.setForeground(Color.GREEN); lblNewLabel_1.setBounds(72, 92, 95, 41); frmLogin.getContentPane().add(lblNewLabel_1); JLabel lblPassword = new JLabel("Password"); lblPassword.setFont(new Font("Andalus", Font.PLAIN, 23)); lblPassword.setForeground(Color.GREEN); lblPassword.setBounds(82, 143, 87, 36); frmLogin.getContentPane().add(lblPassword); textField = new JTextField(); textField.setBackground(Color.LIGHT_GRAY); textField.setBounds(190, 105, 119, 21); frmLogin.getContentPane().add(textField); textField.setColumns(10); passwordField = new JPasswordField(); passwordField.setEchoChar('*'); passwordField.setBackground(Color.LIGHT_GRAY); passwordField.setBounds(190, 154, 119, 21); frmLogin.getContentPane().add(passwordField); JButton btnLogin = new JButton("Login"); btnLogin.setForeground(Color.WHITE); btnLogin.setFont(new Font("Bernard MT Condensed", Font.PLAIN, 12)); btnLogin.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent arg0) { } }); btnLogin.setBackground(Color.DARK_GRAY); btnLogin.setBounds(104, 208, 75, 21); frmLogin.getContentPane().add(btnLogin); JButton btnRegister = new JButton("Register"); btnRegister.setForeground(Color.WHITE); btnRegister.setFont(new Font("Bernard MT Condensed", Font.PLAIN, 12)); btnRegister.setBackground(Color.DARK_GRAY); btnRegister.setBounds(212, 207, 81, 21); frmLogin.getContentPane().add(btnRegister); } 注册: import java.awt.Color; import java.awt.EventQueue; import java.awt.Font; import java.util.ArrayList; import javax.swing.JButton; import javax.swing.JCheckBox; import javax.swing.JFrame; import javax.swing.JLabel; import javax.swing.JPasswordField; import javax.swing.JTextField; import java.awt.event.ActionListener; import java.awt.event.ActionEvent; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileOutputStream; import java.io.IOException; import java.io.ObjectInputStream; import java.io.ObjectOutputStream; public class Register { ArrayList<Login> list = new ArrayList<Login>(); private JFrame frmRegister; private JTextField textField; private JTextField textField_1; private JTextField textField_2; private JTextField textField_3; private JTextField textField_4; private JTextField textField_5; private JTextField textField_6; private JPasswordField passwordField; private JPasswordField passwordField_1; /** * Launch the application. */ public static void main(String[] args) { EventQueue.invokeLater(new Runnable() { public void run() { try { Register window = new Register(); window.frmRegister.setVisible(true); } catch (Exception e) { e.printStackTrace(); } } }); } /** * Create the application. */ public Register() { initialize(); } /** * Initialize the contents of the frame. */ private void initialize() { frmRegister = new JFrame(); frmRegister.setTitle("Register"); frmRegister.setResizable(false); frmRegister.getContentPane().setBackground(Color.DARK_GRAY); frmRegister.setLocationRelativeTo(null); frmRegister.setBounds(100, 100, 540, 598); frmRegister.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); frmRegister.getContentPane().setLayout(null); JLabel lblRegister = new JLabel("Register"); lblRegister.setForeground(Color.GREEN); lblRegister.setFont(new Font("Algerian", Font.BOLD, 49)); lblRegister.setBounds(63, 30, 257, 41); frmRegister.getContentPane().add(lblRegister); JLabel lblUsername = new JLabel("username"); lblUsername.setForeground(Color.GREEN); lblUsername.setFont(new Font("Andalus", Font.PLAIN, 23)); lblUsername.setBounds(154, 98, 95, 23); frmRegister.getContentPane().add(lblUsername); JLabel lblPassword = new JLabel("password"); lblPassword.setForeground(Color.GREEN); lblPassword.setFont(new Font("Andalus", Font.PLAIN, 23)); lblPassword.setBounds(161, 132, 88, 23); frmRegister.getContentPane().add(lblPassword); JLabel lblPasswordComfirmation = new JLabel("password comfirmation"); lblPasswordComfirmation.setForeground(Color.GREEN); lblPasswordComfirmation.setFont(new Font("Andalus", Font.PLAIN, 23)); lblPasswordComfirmation.setBounds(28, 165, 221, 23); frmRegister.getContentPane().add(lblPasswordComfirmation); JLabel lblEmail = new JLabel("e-mail"); lblEmail.setForeground(Color.GREEN); lblEmail.setFont(new Font("Andalus", Font.PLAIN, 23)); lblEmail.setBounds(187, 229, 62, 23); frmRegister.getContentPane().add(lblEmail); JLabel lblQq = new JLabel("QQ"); lblQq.setForeground(Color.GREEN); lblQq.setFont(new Font("Andalus", Font.PLAIN, 23)); lblQq.setBounds(215, 262, 34, 23); frmRegister.getContentPane().add(lblQq); JLabel lblGrade = new JLabel("grade"); lblGrade.setForeground(Color.GREEN); lblGrade.setFont(new Font("Andalus", Font.PLAIN, 23)); lblGrade.setBounds(195, 361, 54, 23); frmRegister.getContentPane().add(lblGrade); JLabel lblClass = new JLabel("class"); lblClass.setForeground(Color.GREEN); lblClass.setFont(new Font("Andalus", Font.PLAIN, 23)); lblClass.setBounds(206, 328, 43, 23); frmRegister.getContentPane().add(lblClass); JLabel lblStudentId = new JLabel("student ID"); lblStudentId.setForeground(Color.GREEN); lblStudentId.setFont(new Font("Andalus", Font.PLAIN, 23)); lblStudentId.setBounds(150, 394, 99, 23); frmRegister.getContentPane().add(lblStudentId); JLabel lblTel = new JLabel("telephone"); lblTel.setForeground(Color.GREEN); lblTel.setFont(new Font("Andalus", Font.PLAIN, 23)); lblTel.setBounds(167, 295, 82, 23); frmRegister.getContentPane().add(lblTel); textField = new JTextField(); textField.setBounds(295, 103, 147, 19); frmRegister.getContentPane().add(textField); textField.setColumns(10); textField_1 = new JTextField(); textField_1.setColumns(10); textField_1.setBounds(295, 234, 147, 19); frmRegister.getContentPane().add(textField_1); textField_2 = new JTextField(); textField_2.setColumns(10); textField_2.setBounds(295, 266, 147, 19); frmRegister.getContentPane().add(textField_2); textField_3 = new JTextField(); textField_3.setColumns(10); textField_3.setBounds(295, 300, 147, 19); frmRegister.getContentPane().add(textField_3); textField_4 = new JTextField(); textField_4.setColumns(10); textField_4.setBounds(295, 333, 147, 19); frmRegister.getContentPane().add(textField_4); textField_5 = new JTextField(); textField_5.setColumns(10); textField_5.setBounds(295, 366, 147, 19); frmRegister.getContentPane().add(textField_5); textField_6 = new JTextField(); textField_6.setColumns(10); textField_6.setBounds(295, 399, 147, 19); frmRegister.getContentPane().add(textField_6); passwordField = new JPasswordField(); passwordField.setEchoChar('*'); passwordField.setBounds(295, 136, 147, 19); frmRegister.getContentPane().add(passwordField); passwordField_1 = new JPasswordField(); passwordField_1.setEchoChar('*'); passwordField_1.setBounds(295, 170, 147, 19); frmRegister.getContentPane().add(passwordField_1); JButton btnCreat = new JButton("Creat"); btnCreat.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { /*serialization(textField.getText() ,passwordField.getText() ); */ /* String str = e.getActionCommand(); if ("Creat".equals(str)) { Login user = new Login(); user.setUserName(textField.getText()); user.setPassWord(textField_1.getText()); //user.setEmail(textField_3.getText()); String rePassWord = textField_2.getText(); if (!(user.getPassWord().equalsIgnoreCase(rePassWord))) { textField_1.setText("密码输入错误"); textField_2.setText("密码输入错误"); } else { frmRegister.setTitle("Successful registration" + "Welcome" + user.getUserName()); jtf2.setText("******"); jtf3.setText("******"); list.add(user); } } else if ("登录".equals(str)) { try { readFromFile(); } catch (Exception e1) { e1.printStackTrace(); } } */} }); btnCreat.setForeground(Color.WHITE); btnCreat.setBackground(Color.DARK_GRAY); btnCreat.setFont(new Font("Bernard MT Condensed", Font.PLAIN, 12)); btnCreat.setBounds(237, 480, 62, 23); frmRegister.getContentPane().add(btnCreat); JCheckBox chckbxAgreeToThe = new JCheckBox("agree to the Teddy Services Agreement and privacy and cookies statement."); chckbxAgreeToThe.setForeground(Color.WHITE); chckbxAgreeToThe.setFont(new Font("Bernard MT Condensed", Font.PLAIN, 12)); chckbxAgreeToThe.setBackground(Color.DARK_GRAY); chckbxAgreeToThe.setBounds(93, 442, 397, 23); frmRegister.getContentPane().add(chckbxAgreeToThe); JLabel label = new JLabel("------------------------------------------------------------------------------------------------------"); label.setForeground(Color.WHITE); label.setBounds(-28, 198, 636, 15); frmRegister.getContentPane().add(label); } public void serialization(String username ,String Password ){ ObjectOutputStream oos=null; try { oos=new ObjectOutputStream(new FileOutputStream("D:\\Register.txt")); User use=new User(username ,Password); oos.writeObject(use); oos.flush(); } catch (FileNotFoundException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); }finally{ try { if(oos!=null) oos.close(); } catch (IOException e) { e.printStackTrace(); } } } }
这个怎么算,求助
为什么算一个10的-十几次方的数,math算出来的是0 ??
4G内存占用资源大怎么办,都是90%左右 我用的是FLIP FIT14 A
在metro模式下用浏览器(UC , 百度)没法看Flash ,怎么解救? 在metro模式下用浏览器(UC , 百度)没法看Flash ,怎么解救? 说没有flash,或版本低,可是adobe flash 官网说我有flash
win8 chrome 上下划时 会卡,怎么解决?? 我的电脑是sony fita14 屏幕是1080p的 用chrome时,用触控板上下滑动时会卡,用IE就不会卡。。。我按照百度上的方法用flag 把什么停用了也没用。。。。怎么办。。。不想放弃chrome
为什么我没有破解手机(港版)就突然可以用上3g了 为什么我没有破解手机(港版)就突然可以用上3g了,(是在它提示我更新运营商之后,中国移动),而且蜂窝一打开就是3g,没有是否开3g的选项,但是出现是否开4g的选项,,神了
香港预定的电话卡买什么的好? 香港预定的电话卡买什么的好?,能不能给个淘宝链接
谁知道又一城5s白色32g 有没有现货 谁知道又一城5s白色32g 有没有现货
谁能告诉我学校广播台前几天放的歌曲 谁能告诉我学校广播台前几天放的歌曲
有谁去参加杭州的南科大自主招生考试吗? 有谁去参加杭州的南科大自主招生考试吗?
推荐几首好歌 推荐几首好歌,
高一什么时候月考 ?
急!!!!! 找战友 找战友 凌云的 一起打 加群6495107
车队收人 疾所^_^不遇 加群28241332 大家来 要网通的
1
下一页