码迷,mamicode.com
首页 > 2017年02月23日 > 全部分享
客户端货主库存汇总查询报文
POST http://localhost:7001/wms/inventory/query/ownerQuant.do Content-Type: application/json { "data":{ "criterias":{ "checkBoxOrg":"1", "qtMaterialId"... ...
分类:其他好文   时间:2017-02-23 18:36:54    阅读次数:184
面向对象的继承
继承是在原有对象基础上,略作修改,得到一个新的对象,而不影响元有对象的功能。 添加加成的方法: 1.继承属性 call方法来继承属性,实现如下: //父类 function createPerson(name,age){ this.name=name; this.age=age; } functio ...
分类:其他好文   时间:2017-02-23 18:36:29    阅读次数:133
总结一下百度地图 定位 大头针 和划线和城市检索的功能
- (void)viewDidLoad { [super viewDidLoad]; //初始化BMKLocationService _locService = [[BMKLocationService alloc]init]; _locService.delegate = self; //启动Lo ...
分类:其他好文   时间:2017-02-23 18:35:36    阅读次数:263
DOM系统学习-进阶
DOM类型 Node类型: 常用类型: ? ? ?元素节点 ELEMENT_NODE ? ? ?属性节点 ATTRIBUTE_NODE ? ? ?文本节点 TEXT_NODE IE不支持节点类型常量名、兼容方案:123456if (typeof Node == 'undefined') { //IE ...
分类:其他好文   时间:2017-02-23 18:34:25    阅读次数:166
aliyun阿里云Maven仓库配置
maven仓库用过的人都知道,国内有多么的悲催。还好有比较好用的镜像可以使用,尽快记录下来。速度提升100倍。 http://maven.aliyun.com/nexus/#view-repositories;public~browsestorage 在maven的settings.xml 文件里配 ...
分类:其他好文   时间:2017-02-23 18:34:10    阅读次数:161
python read文件内容的iter方式
遍历file的方式 ...
分类:编程语言   时间:2017-02-23 18:33:53    阅读次数:258
WEB
光阴似箭,日月如梭,算算今日,也算是来北京两年了,从大四一个实习生到现在在一家业务比较成熟的公司,也不知道两年来学到了什么,总觉的心里空落落的,前端知识从来没有一个比较系统化总结,到现在项目中用到什么知识就去学习什么知识,也不知道在前端的这条路上还能走多久,最近腰病又犯了,今天换了新的工位,屋里不是 ...
分类:Web程序   时间:2017-02-23 18:33:28    阅读次数:204
centos 安装gcc->联网 问题解决
本篇部分摘抄至TD_时缔 VMware虚拟机下安装centosmini版本,安装后第一件事就是yum update 但是有错:cannot find a valid baseurl for repo base base 第一步:确认自己 能否联网 命令: ping g.cn 备注:( CTRL+C ...
分类:其他好文   时间:2017-02-23 18:32:14    阅读次数:165
查询表中有多少行记录
import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; import org.springframework.beans.factory.annotation... ...
分类:其他好文   时间:2017-02-23 18:31:51    阅读次数:232
c# 下载并保存文件在程序目录
public void HttpDownloadFile(string url) { string strFileName = url.Substring(url.LastIndexOf("/")+1); // 设置参数 HttpWebRequest request = WebRequest.Cre... ...
分类:Windows程序   时间:2017-02-23 18:31:15    阅读次数:301
Intellij Shortcuts
ctrl+shift+F : search in whole project ctrl+hover : check the field info in brief ctrl+Q : check the field info in detail ctrl+P: show the parameter i ...
分类:其他好文   时间:2017-02-23 18:30:42    阅读次数:200
Unix Shortcuts
find . -name "*.java" -type f find all the files within a director and its sub-directory ended with .java rm *~ delete all the files ended with ~ grep ...
分类:其他好文   时间:2017-02-23 18:29:28    阅读次数:220
虚幻引擎UE4-命令行使用的一些技巧
虚幻引擎支持很多的命令行命令和参数,你可以替换 ue4Editor-*.exe 或者 UE4-*.exe 你需要打开内置的其他配置项目。 ...
分类:其他好文   时间:2017-02-23 18:28:47    阅读次数:626
log4j2 自定义配置文件,java载入
http://logging.apache.org/log4j/2.x/faq.html#separate_log_files How do I reconfigure log4j2 in code with a specific configuration file? See the below ...
分类:编程语言   时间:2017-02-23 18:28:28    阅读次数:308
Android EditText中输入价格判断
EditText 中输入价格判断 ...
分类:移动开发   时间:2017-02-23 18:28:10    阅读次数:245
/profile文件修改后立即生效
修改profile etc/profile文件是只读的,直接用vi或gedit打开修改后是无法保存的。要修改profile,需要取得root权限,(使用gedit编辑) $sudo gedit /etc/profile 或者 $sudo -s $gedit /etc/profile 这样打开prof ...
分类:其他好文   时间:2017-02-23 18:25:15    阅读次数:161
【Linux】关于Linux的部分细节与配置文件
文章对Linux的启动过程 进行了讲解,摘录一些要点,(摘自:https://www.ibm.com/developerworks/cn/linux/l-linuxboot/)如下: 当系统首次引导时,或系统被重置时,处理器会执行一个位于已知位置处的代码。在个人计算机(PC)中,这个位置在基本输入/ ...
分类:系统相关   时间:2017-02-23 18:24:39    阅读次数:225
829条   上一页 1 ... 11 12 13 14 15 16 17 ... 49 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!