1. JAVA資料庫連接小程序錯誤
能縮進一下不?
你while括弧應該把if括起來才對!
package text;
import java.sql.*;
public class Fds {
public static void main(String[] args) throws SQLException {
姿敗敬Connection con = null;
Statement st = null;
ResultSet rs = null;
String sql = "select names from systypes";
try {
Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
con = DriverManager.getConnection("jdbc:odbc:master", "sa",
"4217715");
st.execute(sql);
String t = null;
while (rs.next()) {
t = rs.getString("name");
if (t != null) {
System.out.println("name:" + t);
跡慎}
if (t == null) {
枯世System.out.println("no");
}
}
} catch (Exception e) {
} finally {
rs.close();
st.close();
con.close();
}
}
}
2. 求大神幫忙,最近用java寫了個同步數據小程序,從托爾斯資料庫同步到sqlserver上
如果採用拿高坦多線程的話,並不見得就會有效率上的顯著提高,如果你的並念頃發沒控制好的話(控制並發是需要佔用資源的),到時候數據有可能會造成丟失或者是多插入的情況。千萬級的數據要同步是需要一定消桐時間的!
3. 如何用JAVA搭建微信小程序後台
如何用JAVA搭建微信小程序後台?微信小程序如何和java後台鏈接在一起?具體操作步驟如下:
1、實現發送給伺服器的數據是逗肢猛String類飢殲型轉換的方法代碼;
2、實現小程序端代碼模板的方法代碼;
3、實現小程序端js處理的方法代碼;
4、實現javaservlet類的方法代碼;
5、實現錯誤的解決方法配置如下;
6、測試的效果如山橋下。
4. 微信小程序怎麼跟後台Java代碼連接對資料庫進行增刪查改操作
用nodejs或者ajax跟後台交互
5. Java語言求一款小程序要求用到access資料庫
操作界面如猛枯下:枝掘洞
 
6. 如何用java寫一個小程序,功能如下:可以把txt裡面的數據導入到oracle資料庫中
public class ReadTxt {
	/**
	 * 
	 * @param filePath
	 *            你的txt文件路徑
	 * @param state
	 * @throws IOException
	 */
	public void readTxt(String filePath, PreparedStatement state)
			throws IOException {
		FileReader f = new FileReader(filePath);
		BufferedReader bufferedreader = new BufferedReader(
				(new InputStreamReader(new FileInputStream(new File(filePath)),
						"utf-8")));//編碼方式為utf-8,租褲txt保存時編碼方式也要選擇為utf-8
		String instring;
		String[] strArr = null;
		while ((instring = bufferedreader.readLine()) != null) {
			if (0 != instring.length()) {
				strArr = instring.split(" ");//與txt文件中的分隔符要一致
				addDataToState(strArr,state);
			}
		}
		f.close();
	}
	/**
	 * 添加數據到state預編譯語句
	 * @param strArr
	 * @param state
	 */
	public void addDataToState(String[] strArr, PreparedStatement state) {
		try {
			state.setString(1, strArr[0]);
			state.setString(2, strArr[1]);
			state.setString(3, strArr[3]);
		} catch (SQLException e) {
			e.printStackTrace();
		}
	}
	public void saveData(String filePath) {
		Connection conn = null;// 得到你的資料庫連接
		PreparedStatement state = null;
		try {
			conn.setAutoCommit(false);// 設置手動提交事務
			state = conn
					.prepareStatement("insert into t_student(name,sex,age) values(?,?,?)");
			this.readTxt(filePath, state);//第一個參數為txt文件路徑
			conn.commit();//提交數據
		} catch (Exception e) {
			e.printStackTrace();
		} finally {
			close(conn, state);
		}
	}
	public void close(Connection conn, PreparedStatement state) {
		try {
			if (conn != null) {
				conn.close();
				conn = null;
			}
			if (state != null) {
				state.close();
				state = null;
			}
		} catch (SQLException e) {
			e.printStackTrace();
		}
	}
public static void main(String[] args) {
		ReadTxt rt = new ReadTxt();
		rt.saveData("");//參數為你的txt文檔譽件路徑
	}
}
你的txt文檔格式必須是:
姓名 性別 年齡
中間用「 」隔開,弊蠢簡如有變動需改變程序
不懂的可以發我郵箱:[email protected]
