登录

最新会员 最新下载

成为了本站VIP会员

2024-12-25 15:38

成为了本站VIP会员

2024-12-25 12:28

成为了本站VIP会员

2024-12-25 12:10

成为了本站VIP会员

2024-12-24 23:54

成为了本站VIP会员

2024-12-24 23:29

成为了本站VIP会员

2024-12-21 19:40
已选条件
  1. 编程语言:Java
  2. 代码类别:android
  3. 发布时间:今天
全部撤销
编程语言 更多 收起
代码类别 更多 收起
发布时间
更多选项

1. win8Sticker

  android上实现win8的磁贴效果,还不错。(Win8 achieve tile effect on the android, not bad.)

2
下载
89
浏览
2016-10-07发布

2. 60道java面试题(入门基础)

Java基础方面: 1、作用域public,private,protected,以及不写时的区别答:区别如下:作用域           当前类       同一package  子孙类       其他packagepublic            √              √                  √             √protected        √              √                  √             ×friendly          √              √                   ×            ×private           √              ×                   ×            ×不写时默认为friendly2、Anonymous Inner Class (匿名内部类) 是否可以extends(继承)其它类,是否可以implements(实现)interface(接口)答:匿名的内部类是没有名字的内部类。不能extends(继承) 其它类,但一个内部类可以作为一个接口,由另一个内部类实现3、Static Nested Class 和 Inner Class的不同答:Nested Class (一般是C 的说法),Inner Class (一般是JAVA的说法)。Java内部类与C 嵌套类最大的不同就在于是否有指向外部的引用上。注: 静态内部类(Inner Class)意味着1创建一个static内部类的对象,不需要一个外部类对象,2不能从一个static内部类的一个对象访问一个外部类对象4、&和&&的区别答:&是位运算符,表示按位与运算,&&是逻辑运算符,表示逻辑与(and)5、Collection 和 Collections的区别答:Collection是集合类的上级接口,继承与他的接口主要有Set 和List.Collections是针对集合类的一个帮助类,他提供一系列静态方法实现对各种集合的搜索、排序、线程安全化等操作6、什么时候用assert答:assertion(断言)在软件开发中是一种常用的调试方式,很多开发语言中都支持这种机制。在实现中,assertion就是在程序中的一条语句,它对一个boolean表达式进行检查,一个正确程序必须保证这个boolean表达式的值为true;如果该值为false,说明程序已经处于不正确的状态下,系统将给出警告或退出。一般来说,assertion用于保证程序最基本、关键的正确性。assertion检查通常在开发和测试时开启。为了提高性能,在软件发布后,assertion检查通常是关闭的7、String s = new String("xyz");创建了几个String Object答:两个,一个字符对象,一个字符对象引用对象8、Math.round(11.5)等於多少? Math.round(-11.5)等於多少答:  Math.round(11.5)==12;Math.round(-11.5)==-11;round方法返回与参数最接近的长整数,参数加1/2后求其floor9、short s1 = 1; s1 = s1 1;有什么错? short s1 = 1; s1 = 1;有什么错答:short s1 = 1; s1 = s1   1; (s1 1运算结果是int型,需要强制转换类型)short s1 = 1; s1  = 1;(可以正确编译)10、Java有没有goto答:java中的保留字,现在没有在java中使用11、数组有没有length()这个方法? String有没有length()这个方法答:数组没有length()这个方法,有length的属性。String有有length()这个方法12、Overload和Override的区别。Overloaded的方法是否可以改变返回值的类型答:方法的重写Overriding和重载Overloading是Java多态性的不同表现。重写Overriding是父类与子类之间多态性的一种表现,重载Overloading是一个类中多态性的一种表现。如果在子类中定义某方法与其父类有相同的名称和参数,我们说该方法被重写 (Overriding)。子类的对象使用这个方法时,将调用子类中的定义,对它而言,父类中的定义如同被"屏蔽"了。如果在一个类中定义了多个同名的方法,它们或有不同的参数个数或有不同的参数类型,则称为方法的重载(Overloading)。Overloaded的方法是可以改变返回值的类型13、Set里的元素是不能重复的,那么用什么方法来区分重复与否呢? 是用==还是equals()? 它们有何区别答:Set里的元素是不能重复的,那么用iterator()方法来区分重复与否。equals()是判读两个Set是否相等    equals()和==方法决定引用值是否指向同一对象equals()在类中被覆盖,为的是当两个分离的对象的内容和类型相配的话,返回真值14、给我一个你最常见到的runtime exception答:常见的运行时异常有如下这些ArithmeticException, ArrayStoreException, BufferOverflowException, BufferUnderflowException, CannotRedoException, CannotUndoException, ClassCastException, CMMException, ConcurrentModificationException, DOMException, EmptyStackException, IllegalArgumentException, IllegalMonitorStateException, IllegalPathStateException, IllegalStateException, ImagingOpException, IndexOutOfBoundsException, MissingResourceException, NegativeArraySizeException, NoSuchElementException, NullPointerException, ProfileDataException, ProviderException, RasterFormatException, SecurityException, SystemException, UndeclaredThrowableException, UnmodifiableSetException, UnsupportedOperationException15、error和exception有什么区别答:error 表示恢复不是不可能但很困难的情况下的一种严重问题。比如说内存溢出。不可能指望程序能处理这样的情况    exception 表示一种设计或实现问题。也就是说,它表示如果程序运行正常,从不会发生的情况16、List, Set, Map是否继承自Collection接口答: List,Set是,Map不是17、abstract class和interface有什么区别答:声明方法的存在而不去实现它的类被叫做抽象类(abstract class),它用于要创建一个体现某些基本行为的类,并为该类声明方法,但不能在该类中实现该类的情况。不能创建abstract 类的实例。然而可以创建一个变量,其类型是一个抽象类,并让它指向具体子类的一个实例。不能有抽象构造函数或抽象静态方法。Abstract 类的子类为它们父类中的所有抽象方法提供实现,否则它们也是抽象类为。取而代之,在子类中实现该方法。知道其行为的其它类可以在类中实现这些方法接口(interface)是抽象类的变体。在接口中,所有方法都是抽象的。多继承性可通过实现这样的接口而获得。接口中的所有方法都是抽象的,没有一个有程序体。接口只可以定义static final成员变量。接口的实现与子类相似,除了该实现类不能从接口定义中继承行为。当类实现特殊接口时,它定义(即将程序体给予)所有这种接口的方法。然后,它可以在实现了该接口的类的任何对象上调用接口的方法。由于有抽象类,它允许使用接口名作为引用变量的类型。通常的动态联编将生效。引用可以转换到接口类型或从接口类型转换,instanceof 运算符可以用来决定某对象的类是否实现了接口18、abstract的method是否可同时是static,是否可同时是native,是否可同时是synchronized答:都不能 19、接口是否可继承接口? 抽象类是否可实现(implements)接口? 抽象类是否可继承实体类(concrete class)答:接口可以继承接口。抽象类可以实现(implements)接口,抽象类是否可继承实体类,但前提是实体类必须有明确的构造函数20、构造器Constructor是否可被override答:构造器Constructor不能被继承,因此不能重写Overriding,但可以被重载Overloading21、是否可以继承String类答:String类是final类故不可以继承22、try {}里有一个return语句,那么紧跟在这个try后的finally {}里的code会不会被执行,什么时候被执行,在return前还是后答:会执行,在return前执行23、用最有效率的方法算出2乘以8等於几答:2 

1
下载
129
浏览
2016-09-29发布

4. androidSoundCommunicate

  基于手机音频接口通信的android应用参考(android Sound interface Communicate)

3
下载
77
浏览
2016-09-18发布

5. cartoon_Application

  基于安卓的高仿快看漫画项目源码,只是仿照了UI部分,没有实际功能。仿照的UI有设置、分类、热门、首页按星期展示内容等部分。一个常见展示类app的大体框架就是这些了。可以在本项目基础上自己二次开发。(Based on Android s high imitation fast look at the comic project source code, just modeled on the UI section, there is no practical function. Modeled on the UI have set, classification, popular, home page by week display content and other parts. A common display of the general framework of the class app is these. Can be based on the project itself, the two development.)

3
下载
85
浏览
2016-09-03发布

6. drawBitmap

  android应用程序开发示例:画图+图片处理(Android application development example: Drawing)

2
下载
110
浏览
2016-08-29发布

7. face_shibie

  基于百度媒体云人脸识别安卓版,Android,源码精简,亲测可用,适合初学者研究(Baidu cloud-based media recognition Android version, Android, streamlined source, pro-test available for beginners research)

20
下载
79
浏览
2016-08-23发布

8. Android-souce-code

  《Android开发艺术探索》书中源码,安卓进阶必备资料(source code for book Android Developers artistic exploration)

5
下载
81
浏览
2016-08-04发布

9. listviewheSQLitezhishi

   注意:本项目是基于android studio开发的,eclipse可能无法直接使用。 本项目是一个简单的基于安卓的记事本项目源码,添加或删除数据的时候会出现显示bug(实际数据不会受到影响),bug体现在添加或删除一条数据以后会在listview里面会展示复制一遍操作后的数据。而不会清除原有的列表文本。新手朋友可以拿这个项目来试试手感,顺便看看能不能独立解决这个问题。 本项目涉及的知识点有: 1、SQLite的基本使用,增删查改 2、listview,adapeter的基本使用 3、activity生命周期 4、intent、bundle传递参数 5、AlertDialog的基本使用(Note: this project is based on the development of studio eclipse, Android may not be able to directly use. This project is a simple Notepad program source code based on Android, add or delete data will appear when the display bug (actual data will not be affected), bug reflected in add or remove a data will be in inside the listview will show copy again after the operation data. And will not clear the original list of text. Novice friends can take this project to try to feel, by the way to solve this problem can not be solved independently. The knowledge points involved in this project are: 1, the basic use of SQLite, CRUD 2, listview, the basic use of adapeter 3, activity life cycle 4, intent, bundle transfer parameters 5, the basic use of AlertDialog)

14
下载
67
浏览
2016-07-25发布

10. imiFirewall

  手机安全防火墙源码是一套比较全面的安卓手机安全方面的源码,总结起来就是三大防火墙电话防火墙、短信防火墙和网络防火墙和一些零碎的小工具。网络防火墙有流量预警功能,可以设置2G3G和wifi的数据流量和显示流量统计。小工具有android的命令行工具,测试了一下可以使用一些简单的liunx命令。还有一个超级终端功能。任务管理器可以结束进程和查看进程的通话防火墙支持通话黑白名单,可以选择电话被拒接以后的回复语、短信防火墙跟电话防火墙功能差不多。(Mobile security firewall source code is a more comprehensive Android mobile phone safety aspects of the source code, to sum up is three firewall phone firewall, SMS firewall and network firewall and some fragmentary gadget. Network firewall has traffic warning function, you can set the 2G3G and WiFi data flow and display traffic statistics. As a command line tool with Android, you can use some simple liunx command test. There is also a super terminal function. Task manager to end of the process and check process call firewall support call black and white list, can choose the telephone was refused to reply, SMS firewall with phone firewall functions in a similar way.)

9
下载
103
浏览
2016-07-21发布

11. Android

  安卓开发,第一本书的源码,非常给力,大家欢迎下载(Andrews development, the first book of the source code, is to force everyone welcome to download)

2
下载
83
浏览
2016-07-12发布

12. android_shopnc_local_life

  一个android写的本地生活商店程序,欢迎下载(android local life shop)

9
下载
102
浏览
2016-07-10发布

13. SimpleReader-second

  安卓聚合阅读器源码是一套基于安卓的RSS阅读器项目源码。内置三张壁纸,换肤功能。项目已经内置了很多RSS源,并且进行了分类。显示模式有白天、夜间两种显示模式。项目文章显示使用的自定义字体,项目本身内置收藏和分享功能,可以分享到QQ空间、新浪微博、腾讯微博、人人和豆瓣。只是暂时不能自定义添加RSS源,相关功能模块正在开发中。(Android aggregation reader source is a set of Android based RSS reader project source. Three built-in wallpaper, skin function. Project has built a lot of RSS source, and carried out a classification. Display mode has two kinds of display modes during the day and night. Project articles show that the use of custom fonts, the project itself in the collection and sharing functions, you can share to QQ space, micro-blog Sina, Tencent micro-blog, everyone and broad bean. Just temporarily can not be customized to add RSS source, the relevant functional modules are being developed.)

2
下载
83
浏览
2016-07-08发布

14. nfccard

  安卓NFC读写非接触IC卡是一款基于非接触IC卡的NFC应用,支持符合ISO7816—3、ISO15693和Felica等国际标准卡片的读取,能够读取的电子标签包括公交卡、银行卡、图书馆射频标贴等。NFCard可以用来读取电子钱包(主要是公交卡)中未加密的余额、交易记录、标识等信息。该软件使用了模块化设计,方便扩充支持其他特殊类型的卡片协议和指令。(Android NFC read write non-contact IC card is a NFC application based on Contactless IC card, support in line with the international standard ISO7816- 3, iso15693 and felica etc. card read, to read electronic tag includes bus card, bank card, library RF stickers and so on. NFCard can be used to read the electronic wallet (mainly public transport card) in the balance of the encryption, transaction records, identification and other information. The software uses a modular design to facilitate the expansion of support for other special types of card protocols and instructions.)

24
下载
124
浏览
2016-07-05发布

15. ImgListView_tpxlfd

  ListView头图片下拉放大效果在屏幕上按住下拉可以实现图片的放大,类似的效果可以在手机版的QQ空间看到,不过我没有想出这个例子图片放大可以应用的具体场景。(Listview head picture drop-down amplification effect in the screen hold down to achieve the picture enlarged. Similar effects can be seen in the mobile phone version of the QQ space, but I do not think this example picture amplification can be applied to the specific scene.)

1
下载
76
浏览
2016-06-24发布

16. Bluetooth_fwj

  可以发送文件的蓝牙适配例子是一个可以选择文件并发送给对方的蓝牙例子源码,项目带有蓝牙可见性的控制和其他常规的功能,项目比较大,分了好多层但是比较给力的是源码有比较详细的注释,用到的朋友可以下载看一下,项目编译版本2.3.3默认编码UTF-8。(You can send files of Bluetooth adapter is an example to a file and send to the other Bluetooth example source code, control project with Bluetooth visibility and other routine functions, the project is relatively large, divided into many layers but more awesome is a more detailed source notes, the use of friends can look at the download the project compiled version of 2.3.3 default encoding UTF-8.)

3
下载
69
浏览
2016-06-22发布

17. PictureViewer

  一个简单的图片查看器,代码中各处注释均有,适合Android开发新手使用。 Android SDK版本为4.2.2(A simple picture viewer, code notes are everywhere in the development of new Android, suitable for use. SDK Android version is 4.2.2)

2
下载
76
浏览
2016-06-21发布

18. ISSAuthorize

  Android与IIS身份验证案例源码,在Android移动项目开发中,访问服务器时,为了简洁方便,我们经常使用http协议来传递JSON格式的数据。然而有些项目需要有一定的安全性,如使用Android客户端登陆到MIS系统。虽然我们是通过Android手机客户端的登陆Activity中登陆到系统的,但是略懂电脑的黑客是能够跳过登陆Activity,从而直接进入系统的。这样,会造成一些由于系统的不安全所带来的麻烦。建立一种防止黑客强行登录的身份验证模式尤为重要。此时,系统的身份验证成为阻挡黑客登陆的一道屏障。那么,怎样实现一个身份验证呢?让我们以IIS为宿主,一步一步的实现身份验证吧(Android and IIS authentication case source code, in the Android mobile project development, access to the server, in order to be simple and convenient, we often use the HTTP protocol to transfer JSON format data. However, some of the project needs to have a certain security, such as the use of Android client login to the MIS system. Although we are through the Android mobile client landing Activity landing to the system, but slightly understand the computer hacker is able to skip the landing Activity, thus directly into the system. In this way, it will cause some of the problems caused by the system is not safe. It is particularly important to establish an identity authentication mode to prevent hackers logging in. At this point, the identity of the system has become a barrier to prevent hackers landing. So, how to achieve an identity verification? Let us take IIS as the host, step by step to achieve authentication bar)

3
下载
93
浏览
2016-06-20发布

19. GifViewDemo

  自定义播放gif格式的图片功能,该项目实现了Android自定义播放gif格式的图片,可以通过点击点击屏幕控制动画播放,希望能够帮到学习android开发的朋友。(Custom playback functions in GIF format pictures, the project realized Android custom play GIF format images, can through the click click the screen to control the animation playback, I hope to be able to help friends to learn Android development.)

3
下载
71
浏览
2016-06-17发布

20. android-develop

  Android用来开发测试版本号的代码,可以自动连接到github上面去 (Android version of the test used to develop code that can be automatically connected to github go above)

1
下载
87
浏览
2016-06-15发布