版权见水印
require 'luacom'
local excel = luacom . CreateObject( 'Excel.Application' )
excel . Visible = true
local book = excel . Workbooks:Add()
local sheet = book . Worksheets( 1 )
sheet . Name = 'gty'
local range = sheet:Range( 'A1:A10' )
local cell = sheet . Cells( 1 , 1 )
sheet:Range( 'D3:D6' ...
--导入luacom模块
require('luacom')
require('lfs') --导入lfs模块用于取得当前路径,和操作EXCEL无关
local sMainPath = lfs.currentdir() --取得当前路径
--创建EXCEL对象
MyExcel = luacom.CreateObject("Excel.Application") --创建EXCEL对象
--MyExcel = luacom.CreateObject("Ket.Application") --创建WPS表格对象,新版的WPS已经兼容了MSO,就不用这...
使用type作为字段名会出现这个错误:
ActiveRecord::SubclassNotFound: The single-table inheritance mechanism failed to locate the subclass: 'xxxx'. This error is raised because the column 'type' is reserved for storing the class in case of inheritance. Please rename this column if you didn't intend it to ...
原因:其中的$.each方法写错.
默认的导致文件夹看不清楚
vi ~/.bashrc
加入下面一行:
LS_COLORS='ex=0;35:ow=1;32'
解决
取Table中的数据时,
使用jq
先循环取值
for(var i=0;i<$("table tr").length;i++)
{
取到每一行的每一列的数据的数据;
把他加入以json的形式,加入到json字符串中,
例如:
var jsonStr = "[";
for(var i = 0;i<$("#trr tr").length;i++){
var number = $("#trr tr:eq("+i+")").children().eq(0).find("input").v...
<?php/*1.把html用单引号引起来用echo 输出, * echo '<form action="search.php" method="post" name="" id="">'; echo '<input name="search" type="text" id="search"/>'; echo '<input name="Submit" type="submit" value="搜索" />' ; echo "</form>"; */ //2,用点号拼接起来然后统一用echo 输出, //$data='<form action="search.php" method...
事物处理innnodb存处引擎 header("Content-type:application/json;charset=utf-8"); $db = new mysqli("localhost","root","root","test"); //连接数据库 $db->autocommit(false); //设置为非自动提交——事务处理 $sql1 = "update shoptest set companyid = companyid - 2 where id = 1"; //这里故意写错属性balance1 $sql2 = "update shoptest set compan...
Pascal(Delphi)、VB中都有一个with关键字,可以帮助程序员减少大量的输入、提高效率。Lua 中没有这个关键字,但我们可以利用以下方式模拟。
例:
a={}
setfenv(function()
a=1
b=2
end,a)()
以上代码效果等于:
a.a=1
a.b=2
等价于Pascal中的:
with a do
begin
a:=1;
b:=2;
end;
当然,这样只能用于赋值,如果需要在a{}中写函数就不能这么写了。这时可以这样写:
a=s...
上一篇我们介绍《构建dubbo分布式平台-平台功能导图》,从今天开始,我们针对于每一个独立的系统做详细的构建,顺便会把整个构建的过程全部记录下来,方便更多的开发者。
提醒:
在构建dubbo分布式平台之前,必须掌握好maven的相关技能,整个构建过程都是使用maven技术。在构建的过程中解决maven问题的时间往往比编码的时间还多,但这不能阻止我们对《构建dubbo分布式平台》之路,没有掌握好maven技能的开发者,可以在网站找一些相关的资料去学习一下。
我们构建dubbo分布式平台特点要突出:模块化、服务化、原子...
上一篇我们介绍了构建dubbo分布式平台的技术选型、目标、特点、独立服务项目等,今天针对于独立服务项目提供平台功能导图,也是我们未来逐步研发的功能。
我这边不做多介绍,直接上图了:
下面的章节中,我们会针对于不同的平台提供不同的解决方案和实施步骤,会详细记录每一个细节点,希望能够帮助大家一起学习!
package sjk_1;
import java.sql.*;
public class sjkmysql_1 {
public static void main(String[] args){
Connection con;
String driver = "com.mysql.jdbc.Driver";
String url="jdbc:mysql://localhost:3306/usb";
String user="root";
String password="root";
try{
Class.forName(driver);
con=DriverM...
Appearance & Behavior > Notifications
找到Gem Manager,把log取消掉
只需要给div加入下面的css属性:
关键属性:background、border、outline
position: absolute;
top: 20px;
left: 50px;
width: 200px;
height: 200px;
background: green;
z-index: 1000;
border: 5px solid #fff;
outline: 5px solid green;
以前我都是用两个div,大框套小框。真是...
截止目前,Rider还没有要支持VB.NET的迹象。只能看着C#流口水
首先一路cd跳到MSBuild.exe所在的目录
C:\Windows\Microsoft.NET\Framework\v4.0.30319>
我这里的版本是v4.0.30319,你可以根据自己电脑的具体情况选择版本。
然后运行编译命令:
MSBuild.exe "C:\Users\Administrator\Documents\Visual Studio 2015\Projects\ConsoleApplication6\ConsoleApplication6.sln" /...
dim x = 123
看上去舒服,打起字来也舒服。
var三个字母全用左手,还用到了最弱的小拇指。
dim双指并用,用的是最适合按键盘的食指和中指。
如果有一天我要发明一种语言,一定用dim作为定义变量的关键字
看到一个求素数的题目,忽然想试试欧拉筛有多快。
题目:求一千万内素数的个数。
先看最普通的筛子:1077秒
T = os.time()
--求iMaxN内的素数
local iMaxN = 10000000
--普通筛子
local iSS = {} --素数数组
local iSZ = {} --筛子
for i = 1, iMaxN do
iSZ[i] = i
end
--过筛求出所有素数
for i = 2, math.sqrt(iMaxN) do
for j = i + 1, iMaxN do
if ...