首页 > 2015年09月21日 > 全部分享
Caused by: org.hibernate.InvalidMappingException: Unable to read XML
1、错误描述2015-09-20 23:37:41 [main] WARN org.springframework.context.support.GenericApplicationContext - Exception encountered during context initialization - cancelling refresh attempt org.springframew...
分类:移动平台   时间:2015-09-21 07:01:03    收藏:0  评论:0  赞:0  阅读:396
android给未签名的apk签名
android给未签名的apk签名命令。 准备文件 1、unsign.apk(未签名的apk) 2、shanhy.keystore(签名证书文件)命令语法: jarsigner -verbose -keystore [keystorePath] -signedjar [apkOut] [apkIn] [alias] 例 子: jarsigner -verbose -keyst...
分类:移动平台   时间:2015-09-21 07:00:53    收藏:0  评论:0  赞:0  阅读:308
写几十行代码,来一场无鼠标编程之旅,看看who is e———(HTML5:HBuilder5.0.0)
*注:本教程针对HBuilder5.0.0*创建HTML结构: h 8 (敲h激活代码块列表,按8选择第8个项目,即HTML代码块,或者敲h t Enter)中途换行: 'Ctrl+Enter'设置charset: m e 6 Enter引用外部js: s 2 Enter 'Ctrl+Enter'创...
分类:Web开发   时间:2015-09-21 07:00:03    收藏:0  评论:0  赞:0  阅读:315
如何获取帮助———— QQ群讨论摘要
QQ群对话整理(删除一些简单的回应),对一些重要的地方,我做了一些加粗宝玉 2015/9/211:49:05 这次题目还有个问题就是如何读取Excel,我想对于很多同学来说是个困难 Java读取Excel我也没做过,但是如果我做的话,我会有几种思路 直接Google(技术文章尽量用Go...
分类:其他   时间:2015-09-21 06:59:53    收藏:0  评论:0  赞:0  阅读:184
Best Time to Buy and Sell Stock II 解答
QuestionSay you have an array for which theithelement is the price of a given stock on dayi.Design an algorithm to find the maximum profit. You may co...
分类:其他   时间:2015-09-21 06:59:43    收藏:0  评论:0  赞:0  阅读:304
【软剑攻城队】团队介绍发布!
Email:qianlxc@126.comFree time:8:007:00a.m ~ 11:00 12:00p.mIntroduction:我是一个热情的人。开朗的人。活泼的人。(小编觉得用逗号分开比较好我喜欢交际,喜欢沟通。我的理想是做一个软件硬件都能有扎实基础,同时具备很强的工程实践能力与学...
分类:其他   时间:2015-09-21 06:59:33    收藏:0  评论:0  赞:0  阅读:226
Binary Tree Preorder Traversal
public List preorderTraversal(TreeNode root) { List ret = new ArrayList(); if(root == null) return ret; ...
分类:其他   时间:2015-09-21 06:59:23    收藏:0  评论:0  赞:0  阅读:188
Best Time to Buy and Sell Stock 解答
QuestionSay you have an array for which theithelement is the price of a given stock on dayi.If you were only permitted to complete at most one transac...
分类:其他   时间:2015-09-21 06:59:13    收藏:0  评论:0  赞:0  阅读:243
LeetCode Simplify Path
原题链接在这里:https://leetcode.com/problems/simplify-path/首先用string.split 把原有path 按照"/"分开 存入 String 数组strArr中。从肉往后扫描数组,遇到"." 和 " "直接跳过,遇到正常字符就压入栈中,遇到".."时若s...
分类:其他   时间:2015-09-21 06:59:03    收藏:0  评论:0  赞:0  阅读:235
Binary Tree Level Order Traversal
public List> levelOrder(TreeNode root) { List> ret = new ArrayList>(); if(root == null) return ret; ArrayDeque...
分类:其他   时间:2015-09-21 06:58:53    收藏:0  评论:0  赞:0  阅读:247
Triangle 解答
QuestionGiven a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below.For example, given...
分类:其他   时间:2015-09-21 06:58:43    收藏:0  评论:0  赞:0  阅读:274
STM32 I2C 總線佔用問題解析
这几天解决 STM32 MCU的I2C 总线占用(bus BUSY) 问题,觉得是不错的学习,从文中可得知I2C问题的思考逻辑逻,文末并指出经常出错的问题点,在此分享给大家。
分类:其他   时间:2015-09-21 06:58:33    收藏:0  评论:0  赞:0  阅读:564
LeetCode Reverse Words in a String
原题链接在这里:https://leetcode.com/problems/reverse-words-in-a-string/把原有string s按照空格分开存入strArr中,再从strArr尾部开始一个一个加到StringBuikder中即可。Note: 1.这里学习了几个新的API, s....
分类:其他   时间:2015-09-21 06:58:23    收藏:0  评论:0  赞:0  阅读:193
第二课 HTML+CSS
HTML滚动字幕标签属性描述默认属性字幕从右到左滚动,循环hight高度direction滚动的方向,值:left 向右; up 向上; down 向下;hspace滚动的区域width宽度behavior值:slide 到达目的地后,停止滚动 alternate 字幕来回循环滚动sctolla.....
分类:Web开发   时间:2015-09-21 06:58:13    收藏:0  评论:0  赞:0  阅读:338
《第一行代码:Android》学习笔记:Activity生命周期
个人读书笔记,对书上的知识点根据个人理解进行部分补充。通过简单的描述,有助于对Activity life cycle的理解和记忆。
分类:移动平台   时间:2015-09-21 06:58:03    收藏:0  评论:0  赞:0  阅读:220
排序算法总结(C++版)
总结下学过的排序算法,方便以后用到。1.插入排序——将一个记录插入到已排序好的有序表中,从而得到一个新,记录数增1的有序表。void insertSort(int a[],int len){ for(int i = 1;i 0 && x 0;i --) for(int...
分类:编程语言   时间:2015-09-21 06:57:33    收藏:0  评论:0  赞:0  阅读:328
Less
简介CSS(层叠样式表)是一门历史悠久的标记性语言,同 HTML 一道,被广泛应用于万维网(World Wide Web)中。HTML 主要负责文档结构的定义,CSS 负责文档表现形式或样式的定义。作为一门标记性语言,CSS 的语法相对简单,对使用者的要求较低,但同时也带来一些问题:CSS 需要书写...
分类:其他   时间:2015-09-21 06:57:23    收藏:0  评论:0  赞:0  阅读:216
《第一行代码:Android》学习笔记:Activity & Intent
个人读书笔记,对书上的知识点根据个人理解进行部分补充。Activity life cycle部分将另起篇章。
分类:移动平台   时间:2015-09-21 06:57:13    收藏:0  评论:0  赞:0  阅读:325
[LeetCode] Peeking Iterator 顶端迭代器
Given an Iterator class interface with methods: next() and hasNext(), design and implement a PeekingIterator that support the peek() operation -- it e...
分类:其他   时间:2015-09-21 06:57:03    收藏:0  评论:0  赞:0  阅读:224
sass
SASS用法指南一、什么是SASSSASS是一种CSS的开发工具,提供了许多便利的写法,大大节省了设计者的时间,使得CSS的开发,变得简单和可维护。二、安装和使用2.1 安装SASS是Ruby语言写的,但是两者的语法没有关系。不懂Ruby,照样使用。只是必须先安装Ruby,然后再安装SASS。假定你...
分类:其他   时间:2015-09-21 06:56:53    收藏:0  评论:0  赞:0  阅读:314
1737条   上一页 1 ... 74 75 76 77 78 ... 87 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!