自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

_______攻城无数_____、、、、、、

~~~~~~~Less is More ______Make it Work, Keep it Simple~~~~~~~~~~~

  • 博客(15)
  • 资源 (45)
  • 收藏
  • 关注

转载 java六大必须理解的问题

对于这个系列里的问题,每个学Java的人都应该搞懂。当然,如果只是学Java玩玩就无所谓了。如果你认为自己已经超越初学者了,却不很懂这些问题,请将你自己重归初学者行列。内容均来自于CSDN的经典老贴。问题一:我声明了什么! String s = "Hello world!"; 许多人都做过这样的事情,但是,我们到底声明了什么?回答通常是:一个String,内容是“Hello wor

2012-04-29 12:58:17 799 1

转载 Java编程技巧:小爬虫程序

本文介绍Java编程技巧之小爬虫程序的编程方法。   马萨玛索(http://www.masamaso.com/index.shtml)每天10点都会推出一折商品5件,就是秒购。男装质量还不错,所以就经常去抢,感觉手动太慢了,就写了一个小爬虫程序,让自己去爬,如果是金子页面(免费商品)就会自动打开,我就可以抢到了。和大家分享一下。   思路:   1. 把所有想要的商品的链

2012-04-29 02:36:23 1305

原创 JVM BUG: Internal Error (classFileParser.cpp:3161), pid=1116, tid=3912 Error: ShouldNotReachHere()

涉及到线程安全的部分出现了JVM BUG——不解,Eclipse返回的信息如下,## A fatal error has been detected by the Java Runtime Environment:##  Internal Error (classFileParser.cpp:3161), pid=1116, tid=3912#  Error:

2012-04-28 17:21:22 3660 2

原创 ACTIVITY 跳转 通信

Activity之间通过intent 来通信的,要跳转到的Activity有两种状态需啊哟处理。 如果ACTIVITY 不存在,android系统就会调用其OnCreate()方法新建一个实例,并在该方法中处理通信内容。如果是单例ACTIVITY :singleTask" android:name="Activity">且已经存在的话,应该使用onNewIn

2012-04-27 12:03:01 780

原创 5种数据存储方式之文件和Preferences

l文件Context.MODE_PRIVATE:为默认操作模式,代表该文件是私有数据,只能被应用本身访问,在该模式下,写入的内容会覆盖原文件的内容,如果想把新写入的内容追加到原文件中。可以使用Context.MODE_APPENDContext.MODE_APPEND:模式会检查文件是否存在,存在就往文件追加内容,否则就创建新文件。Context.MODE_WORLD_

2012-04-26 11:23:14 840 2

原创 ContentProvider的创建和ContentResolver的使用

1、创建contentProvider 定义(客户端调用时需知的内容)接口package com.gogler.content;import android.net.Uri;import android.provider.BaseColumns;public class Users { public static final String AUTHORITY = "com.

2012-04-26 00:15:16 1044

原创 判断字符串是不是数值串boolean is_numeric(String str)

方法: /** * check a string whether is numeric or not * @param String str * @return boolean true or false */ public static boolean is_numeric(String str) { try { Double d= Double.va

2012-04-25 17:17:16 2249

原创 instanceof使用小结

1.用法boolean =   A.instanceof(B);判断对象A是不是类型B的实例。2.注意事项   基本类型的实例没有该方法。

2012-04-25 17:08:08 639

转载 中国Android应用商店汇总

中国Android应用商店汇总机锋市场http://apk.gfan.com/Aspx/UserApp/softpotal.aspx?softCategory=7&i=2 爱米软件商店http://www.aimi8.com/ 优亿市场http://www.eoemarket.com/ 掌上应用汇http://

2012-04-24 18:02:10 1642

原创 RGB颜色查询对照表

在线地址 http://www.114la.com/other/rgb.htmRGB颜色对照表 #FFFFFF #FFFFF0 #FFFFE0 #FFFF00 #FFFAFA #FFFAF0 #FFFACD #FFF8DC #FFF68F #FFF5EE #FFF0F

2012-04-23 10:49:03 6420

原创 Android 开发中使用SAX解析xml小结

1. 解析类:      继承和重写DefaultHandler 。 import java.util.ArrayList;import java.util.List;import org.xml.sax.Attributes;import org.xml.sax.SAXException;import org.xml.sax.helpers.DefaultHandler;

2012-04-19 17:56:51 760

转载 使用库项目实现Android程序代码的复用

作者:杜刚在软件开发过程中,程序代码的复用,是非常重要的概念。我们总是需要使用一些现有的模块、包、框架,或开发自己的模块、包、框架,来实现对程序代码的复用。比如在JavaWeb编程过程中,经常使用的Struts和Spring等框架,就可以大大简化我们的开发过程,提高开发效率。在开发Android应用程序的过程中,同样有这方面的需求。Android系统包含的Android应用程序开发

2012-04-12 12:32:41 946

原创 android:layout_paddingLeft和android:layout_marginLeft区别

android:gravity 属性是对该view中内容的限定.比如一个button 上面的text. 你可以设置该text 相对于view的靠左,靠右等位置.android:layout_gravity是用来设置该view相对与父view 的位置.比如一个button 在linearlayout里,你想把该button放在linearlayout里靠左、靠右等位置就可以通过该属性设置.

2012-04-11 22:58:21 3567 2

原创 SUN GRID ENGINE 小节

0、  简介与安装1、  命令详解(cnblog)2、  USE of Sun Grid Engine3、  Sun ONEGrid Engine 管理和用户指南(pdf下载)4、 基于SGE的java开发策略:由于SGE是使用c语言编码的,在弄清楚SGE命令集的基础上,通过JNI向SGE发送命令来操控之。

2012-04-07 00:04:08 1765

原创 java.util.regex.PatternSyntaxException: Syntax error U_REGEX_RULE_SYNTAX near index 1

java.util.regex.PatternSyntaxException: Syntax error U_REGEX_RULE_SYNTAX near index 1str =  bundle.getString("location").split("+"); 改为 str =  bundle.getString("location").split("\\+");

2012-04-04 08:09:27 5939 3

Axure快速原型设计参考资料

Axure快速原型设计参考资料

2012-05-31

Axure_Pro 网络产品原型设计工具

Axure_Pro 网络产品原型设计工具

2012-05-31

数据库面试题(SQL+ORACLE)

数据库面试题(SQL+ORACLE)-DBA数据库管理员JAVA程序员架构师必看.pd

2012-05-26

张孝祥正在整理Java就业面试题大全.doc

张孝祥正在整理Java就业面试题大全.doc

2012-05-26

取色工具 android ui color

小编已经介绍过很多屏幕取色软件了,今天将要介绍的Pixie真的是太简洁了,只有8KB的大小,启动Pixie,在屏幕中间会出现Pixie小巧的界面,上面已经写好了你鼠标所在位置的相关色彩状况,移动鼠标数据相应变化,当然Pixie也是能结合热键对色值进行复制等操作.

2012-05-11

上海Java面试宝典.

上海Java面试宝典.

2012-04-17

张孝祥-java讲义

《Java就业培训教程》_张孝祥.ppt Java就业培训教程.pdf JavaEnhance.ppt

2012-04-17

开启eclipse代码提示功能

适用版本 Eclipse IDE for Java Developers Version: Indigo Service Release 1 Build id: 20110916-0149

2012-04-13

dom4j-1.6.1.ja

dom for java on android dev

2012-04-06

导航犬源代码.zip

导航犬源代码.zip

2012-04-06

多图详解android-UI设计.doc

多图详解android-UI设计.doc

2012-04-05

北大计算机系JAVA培训讲义.rar

北大计算机系JAVA培训讲义.rar

2012-04-05

Java讲义整书(2010年初打印版

Java讲义整书(2010年初打印版

2012-04-05

MLDN-JAVA讲义.rar

MLDN-JAVA讲义.rar

2012-04-05

Java 语言程序设计(一)串讲(华夏大地收费讲义

Java 语言程序设计(一)串讲(华夏大地收费讲义

2012-04-05

android讲义

传智播客android讲义_黎活明.ppt

2012-04-05

easyexplore

easyexplore 用于eclipse

2012-04-05

android 简易

android 简易

2012-04-05

ksoap2-android-assembly-2.5.4-jar-with-dependencies

ksoap2-android-assembly-2.5.4-jar-with-dependencies android 访问web service 所需的工具包

2012-03-29

parse xml string from url to POJO

android 转换服务端xml资源到本地类 eclipse工程文件,可直接导入运行

2012-03-28

Eclipse+EclipseME+WTK搭建J2ME开发环境

Eclipse3.6.2+EclipseME1.7.9+WTK2.5.2 搭建J2ME开发环境

2012-02-17

android api 源码

The JAR file D:/..../android.jar has no source attachment

2012-02-06

android自动化测试资料

3.Create_Android_Sample_App 4.Test_Android_Sample_App Android手机测试方法交流 Android自动测试之monkeyrunner工具 Android自动测试之Monkey工具 Android自动化测试初探 Android自动化测试可行性途径分析 Android自动化测试之道 GSM手机自动化测试解决方案 手机自动化测试系统设计浅析 在Android_Robotium自动化测试中导出Test_result

2012-01-11

android GPS 实验数据收集软件代码+相关文档

android GPS应用 实验数据收集程序

2011-12-28

android感应器开发之加速度、方向传感器

博客附码:http://blog.csdn.net/gogler/article/details/7032009 用于收集android感应器数据的程序,附带一个比较完整的文件操作类。

2011-12-19

用service播放音乐

http://blog.csdn.net/gogler/article/details/6913084 用service播放音乐

2011-10-28

Use ContentProvider Get Contacts

Use ContentProvider Get Contacts http://blog.csdn.net/gogler/article/details/6910903

2011-10-27

Deep Learning Networks for Stock Market Analysis and Prediction

Deep Learning Networks for Stock Market Analysis and Prediction: Methodology, Data Representations, and Case Studies

2017-11-10

Dynamic Routing Between Capsules

Capsule 是一组神经元,其活动向量(activity vector)表示特定实体类型的实例化参数,如对象或对象部分。我们使用活动向量的长度表征实体存在的概率,向量方向表示实例化参数。同一水平的活跃 capsule 通过变换矩阵对更高级别的 capsule 的实例化参数进行预测。当多个预测一致时,更高级别的 capsule 变得活跃。我们展示了判别式训练的多层 capsule 系统在 MNIST 数据集上达到了顶尖的性能,比识别高度重叠数字的卷积网络的性能优越很多。为了达到这些结果,我们使用迭代的路由协议机制(routing-by-agreement mechanism):较低级别的 capsule 偏向于将输出发送至高级别的 capsule,有了来自低级别 capsule 的预测,高级别 capsule 的活动向量具备较大的标量积

2017-11-07

appdemo.gif

ppdemo.gif

2014-07-21

Android应用UI设计模式

Android应用UI设计模式 Android Design Patterns.pdf

2014-06-23

苹果Swift编程语言入门教程【中文版】.pdf

苹果Swift编程语言入门教程【中文版】.pdf

2014-06-04

ios 7 xcode 5 objective-c

Beginning_iOS_7_Development_Exploring_the_iOS_SDK.pdf Beginning_iOS_7_Source_Code.zip iOS.in.Practice.Nov.2012 iOS 6实践指南.pdf Learn.Objective-C.on.the.Mac.2nd.Edition ProgrammingWithObjectiveC The+Objective-C+2.0+Programming+Language

2014-05-22

Cocoa.Programming.for.Mac.OS.X.4th.Edition.pdf+源代码.zip

Cocoa.Programming.for.Mac.OS.X.4th.Edition.pdf+源代码.zip 包括书籍 和 书中代码

2014-05-15

Mac OS X背后的故事.pdf

《Mac OS X 背后 的故事》介绍了mac系统的由来和故事性的过程,包括mac的内核变迁、芯片适配、文件系统、多核支持、64/32支持等等,介绍了mac操作系统是怎样炼成的。 就像技术史一样,可以了解到很多操作系统底层库以及其他涉猎: 《Cocoa Programming Developer’s Handbook》 GCD与多核并发编程问题 LLVM GDB INTERFACE BUILDER ..... 以后更多技术发展的文章

2014-05-15

RoadMapiOS.pdf 苹果官方

Start Developing iOS Apps Today provides the perfect starting point for iOS development. On your Mac, you can create iOS apps that run on iPad, iPhone, and iPod touch. View this guide’s four short modules as a gentle introduction to building your first app—including the tools you need and the major concepts and best practices that will ease your path. The first three modules each end with a tutorial, where you’ll implement what you’ve learned. At the end of the last tutorial, you’ll have created a simple to-do list app. After you’ve built your first app in this guide and are considering your next endeavor, read the fourth module. It explores the technologies and frameworks you might consider adopting in your next app. You’ll be on your way to keeping your customers engaged and looking forward to the next great thing. Even though this guide takes you through every step of building a simple app, to benefit most it helps to be acquainted with computer programming in general and with object-oriented programming in particular.

2014-02-10

Beginning iOS 6 Development Exploring the iOS SDK.pdf

This book is a guide to help you get started down the path to creating your own iOS applications. Our goal is to get you past the initial difficulties, to help you understand the way iOS applications work and how they are built. As you work your way through this book, you will create a number of small applications, each designed to highlight specific iOS features and to show you how to control or interact with those features. If you combine the foundation you’ll gain through this book with your own creativity and determination, and then add in the extensive and well-written documentation provided by Apple, you’ll have everything you need to build your own professional iPhone and iPad applications.

2014-02-10

[Programming.iOS.7(4th,2013.12)].Matt.Neuburg.文字版.pdf

This book, now in its fourth edition, has grown in size to encompass the growth in its subject, until it can grow no more. The previous editions — Programming iOS 4 (May 2011), Programming iOS 5 (March 2012), and Programming iOS 6 (March 2013) — were approximately 800 pp., 950 pp., and 1150 pp. in length, respectively, not because I had more to say each time, but because Apple, as it added features to iOS 4 to make iOS 5, and to iOS 5 to make iOS 6, had given me more to describe. Now iOS 7 has come along with even more new features, and drastic action was needed. Accordingly, the book has been ripped violently but neatly in two — neatly, because there was already a perfectly natural place to do the ripping, namely right after the end of what used to be Part III (Chapter 13). There are now two books: • A new book, iOS 7 Programming Fundamentals, comprising chapters 1–13 of the earlier books. • This book, Programming iOS 7, comprising chapters 14–40 of the earlier books.

2014-02-10

[iOS.7.Programming.Cookbook(2013.10)].Vandad.Nahavandipoor.文字版

[iOS.7.Programming.Cookbook(2013.10)].Vandad.Nahavandipoor.文字版 This edition of the book is not just an update, but a total remake of the previous edition. iOS 7 changed everything: the look and feel, the way we use our iOS devices, and most importantly, the way we program for iOS devices. This called for a substantial rewrite indeed. I have added roughly 50 new recipes to this book, talking about things such as UIKit dynamics, collection views, the keychain, push notifications, and whatnot. I have also gone through all the example codes and figures and updated them for iOS 7. iOS 7 is a huge step forward for this amazing operating system that we all, as programmers and users, have grown to love and enjoy programming for. You must have noticed how the focus of iOS 7 is on being dynamic: how your UI should adapt to various movements and motions that can be applied to the device. What I mean by that is Apple wants developers to really look at the details of their apps and bring real-world physics and dynamics into them. That’s why Apple introduced UIKit Dynamics to the SDK, and that is why this book has a whole chapter dedicated to this concept. The more expensive a high-end device such as the new iPhone becomes, the more demanding the users will get as well. Nobody blames them, though! They have just bought a fantastic and topof- the-line new iPhone or iPad and they want to see amazing apps running on them, leveraging all the capabilities that those devices have to offer

2014-02-10

db4o-8.0-java

Content This distribution contains documentation, binaries and sources for the open source object database db4o. For more information about the content of a specific folder see the readme.html file in the respective folder. /doc documentation /lib binaries /ome Object Manager Enterprise - database browser plugin for your IDE /src sources

2012-05-31

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除