程序设计思想: 首先,由于之前的四则运算已经基本上把需要实现的功能都实现了,所以这次任务的重心在于怎么把一个Java程序变成网页版的。 第一步我的想到需要哪几个网页,每个网页都实现什么功能。那么,主页是必不可少的,用户需要在主页上选择一些出题的基本参数,比如说自然数的范围、 除法有无余数,减法有无负 ...
分类:
其他好文 时间:
2017-04-07 20:30:29
阅读次数:
173
导入包: import java.sql.*; 注册JDBC驱动程序: Class.forName("com.mysql.jdbc.Driver"); 打开一个连接: conn = DriverManager.getConnection(DB_URL,USER,PASS); 执行一个查询 stmt ...
分类:
数据库 时间:
2017-04-06 15:22:36
阅读次数:
254
将Excel中的数据读取到List>集合中 package com.mvc.util; import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.... ...
分类:
其他好文 时间:
2017-04-06 13:53:00
阅读次数:
245
Continuing our previous post https://nishantrana.me/2017/03/22/configure-dynamics-365-and-azure-service-bus-integration-through-queue-and-queueclient/ ...
分类:
其他好文 时间:
2017-04-03 14:40:06
阅读次数:
210
转自:What is the difference between “text” and new String(“text”)? new String("text"); explicitly creates a new and referentially distinct instance of a ...
分类:
其他好文 时间:
2017-04-03 01:06:09
阅读次数:
171
'use strict'; //加载http模块; const http = require('http'); //创建一个http服务; const server = http.createServer((req, res) => { res.writeHead(200, { "content-t ...
分类:
Web程序 时间:
2017-04-02 14:29:42
阅读次数:
219
说明:本文章可供有一定js基础的朋友参考nodejs入门,本文未讲解nodejs的安装,如有需要的同学可以加QQ3382260752找我,进行交流学习。 1.新建文件夹helloworld demo,然后新建文件server.js,将以下代码拷贝至server.js var http = requi ...
分类:
Web程序 时间:
2017-04-02 12:21:02
阅读次数:
136
当你的selenium WebDriver 启动IE11报这个错时:Unable to find element on closed window (WARNING: The server did not provide any stacktrace information),通过Google解决了 ...
【CommonsChunkPlugin】 The CommonsChunkPlugin is an opt-in feature that creates a separate file (known as a chunk), consisting of common modules shared ...
分类:
其他好文 时间:
2017-03-30 13:53:54
阅读次数:
136
angular.module('indexdb', []) .factory('indexDbJs', [function() { const CurDBVersion = 10000; window.indexedDB = window.indexedDB || window.mozIndexed... ...
分类:
数据库 时间:
2017-03-29 12:38:58
阅读次数:
236