摘要:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>本网站已建立</title> </head> <body> <h1 id="time"></h1> </body> </html> <script> funct 阅读全文
摘要:
INSERT INTO Customers(CustomerName,ContactName,Address,City,PostalCode,Country) VALUES (?,?,?,?,?,?); INSERT INTO 表名(字段名1,字段名2...) values(?,?,?,) ?是占位 阅读全文
摘要:
阅读全文
摘要:
CREATE DATABASE 数据库名;//创建数据库 SHOW databases;//查看数据库列表 USE 数据库名;//选择数据库 DROP DATABASE 数据库名://删除数据库 建表示例 CREATE TABLE admin2( id int(11) NOT NULL AUTO_I 阅读全文
摘要:
public class SerializableObj { public static void main(String[] args) { ObjectOutputStream oos=null; try{ //1.创建ObjectOutputStream输出流 oos =new ObjectO 阅读全文
摘要:
public class DataInOutTest { public static void main(String[] args) { DataOutputStream dos=null; DataInputStream dis=null; FileInputStream fis=null; F 阅读全文
摘要:
public class FileReaderTest { public static void main(String[] args) { Reader fr=null; try{ //2.实例化FileReader对象 fr =new FileReader("D:\\doc\\诗词.txt"); 阅读全文
摘要:
public class FileWriterTest { public static void main(String[] args) { Writer fw=null; try{ //创建FileWriter对象 fw =new FileWriter("D:\\DOC\\mysaying.txt 阅读全文
摘要:
public class InputStreanTest { public static void main(String[] args) { InputStream fis=null; try{ //2.创建文件输入对象 fis=new FileInputStream("D:\\doc\\test 阅读全文
摘要:
public class InputStreamTest { public static void main(String[] args) { InputStream fis=null; try{ //2.创建文件输入对象 fis=new FileInputStream("D:\\doc\\test 阅读全文