-
在NETBEANS环境下,编写J2ME代码,模拟实现手机中的电话簿功能...
在NETBEANS环境下,编写J2ME代码,模拟实现手机中的电话簿功能-NETBEANS environment in the preparation of J2ME code, analog cell phone in the phone book to achieve functional
- 2022-06-15 05:43:47下载
- 积分:1
-
JTextCopy
创建一个DEMO窗口,将第一个文本区域的文字通过点击COPY复制到下一个文本区域,CLEAR清空,CLOSE关闭(Create a DEMO window, the first text area COPY copy the text to the next by clicking on a text area, CLEAR Clear, CLOSE close)
- 2011-05-21 14:48:43下载
- 积分:1
-
jsp/servlet/javaBean Applications: online book system
jsp/servlet/javaBean应用:网上购书系统-jsp/servlet/javaBean Applications: online book system
- 2022-03-06 10:24:00下载
- 积分:1
-
AddressBookGUI
Exam3 icarnegie SSD3 AddressBookGUI
- 2013-12-05 04:08:03下载
- 积分:1
-
用户管理系统 jsp+servlet
这是一个使用jsp+servlet 完成的用户管理系统 ,包含基础的增删改查和session以及cookie的使用,可以帮助大家很好的理解jsp+servlet的运用,希望可以帮到大家
- 2022-05-18 11:51:49下载
- 积分:1
-
java面向对象基础2
1.方法签名: 方法名+参数列表
2.方法的重载(Overload):
1)方法名相同,参数列表不同,称为方法的重载
2)编译器在编译时根据签名绑定调用不同的方法
3.构造方法:
1)常常用于给成员变量赋初值
2)与类同名,没有返回值类型
3)在创建对象时被自动调用
4)若自己不写构造,则编译器默认提供一个无参构造
若自己写了构造,则编译器不再默认提供
5)构造方法可以重载
4.this:指代当前对象,哪个对象调指的就是哪个对象
在方法中访问成员变量,默认有个this.
- 2022-07-16 19:17:30下载
- 积分:1
-
办公租借平台
一个办公租借平台,在平台上可以租用东西。
- 2023-05-30 04:00:04下载
- 积分:1
-
检测安卓手机自带传感器详细信息
public class MainActivity extends Activity {
private TextView text;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
text = (TextView)findViewById(R.id.text);
SensorManager sm = (SensorManager)getSystemService(Context.SENSOR_SERVICE);
List allsensors = sm.getSensorList(Sensor.TYPE_ALL);
text.setText("该手机有"+allsensors.size()+"个传感器,他们分别是:
");
for(Sensor s:allsensors){
String tempString = "
" + " 设备名称:" + s.getName() + "
" +
- 2023-08-04 02:35:04下载
- 积分:1
-
googlelocation
说明: 用Android studio配置谷歌地图,实现坐标定位并显示。(Configure Google Map with Android studio to achieve coordinate positioning and display.)
- 2019-04-05 20:54:55下载
- 积分:1
-
JAVA工交管理系统.主要用来管理城市工交.包括工交的添加.删除.更改.路线的查看.还有转车的信息的查询...
JAVA工交管理系统.主要用来管理城市工交.包括工交的添加.删除.更改.路线的查看.还有转车的信息的查询-JAVA communications management system. Used primarily for the management of urban communications. Including the addition of communications.删除.更改. Show routes. There is the interchange of information inquiries
- 2022-04-26 22:14:06下载
- 积分:1