本人做了个handler计时器隔5秒查询一次
handler = new Handler();
task = new Runnable() {
@Override
public void run() { //5秒重复查询一次
handler.postDelayed(task, 5000);
//发起查询请求
mManager.nearbyInfoReque……继续阅读 »
8年前 (2016-09-18) 941浏览
0个赞
java代码如下:
import android.content.ContentResolver;
import android.database.Cursor;
import android.os.Bundle;
import android.provider.ContactsContract;
import android.support.design.……继续阅读 »
8年前 (2016-09-18) 1238浏览
0个赞
如题,手机和蓝牙耳机配对之后,怎么建立连接
解决方案
20
BluetoothA2dpService是底层的Service类,你可以通过BluetoothA2dp类来使用它
android.bluetooth.BluetoothA2dp
首先需要绑定BluetoothA2dpService,以下是部分代码:
private BluetoothAdapter ……继续阅读 »
8年前 (2016-09-18) 2382浏览
0个赞
本人现在本人在做一个小的项目测试,然后现在客户端已经可以获得服务器传过来的XML的字符串消息。方法什么的都是本人写的。现在是要获得节点里面的属性名和属性值,原因是要在一个APP中显示出来,本人这个只是测试的一个JAVA程序。到时是要写到Android里面的。所以是要获取这些值。 但是今天试了两个方法都报错。这边是其中一种方法,报的错都一样,所以应该不是方法问……继续阅读 »
8年前 (2016-09-18) 3398浏览
0个赞
Error creating bean with name “sqlSessionFactory” defined in class path resource [config/yb-spring.xml]: Initialization of bean failed; nested exception is java.lang.re……继续阅读 »
8年前 (2016-09-18) 1739浏览
0个赞
<c:forEach> 在页面中遍历集合的时候 能够根据集合中的时间字段进行正向 逆向排序吗?
解决方案
30
<c:forEach>自身不带排序功能或相关的排序属性~
你在查询的时候在sql里order by排好~
直接放到ArrayList就行了~ ArrayList本身就是有序的~
再用<c:forEach>……继续阅读 »
8年前 (2016-09-18) 978浏览
0个赞
在Struct action 中接收 post 方式提交上来的数据,
用request.getInputStream();但是得不到数据,这是问什么啊,原因是数据没有 name ,所以不能用getParameter();方法。
求高手指点一下 。
解决方案
10
enctype=”multipart/form-data”
30
本人……继续阅读 »
8年前 (2016-09-18) 2269浏览
0个赞
==============================================================测试类
public class SerialTest{
private static Connection conn=null;
private static PreparedStatement ps=null;
private st……继续阅读 »
8年前 (2016-09-18) 1145浏览
0个赞
在使用SpringMVC+mybatis框架时,想要在session到期后,可以更新数据库中用户在线状态。
于是本人自定义一个类 SessionListener implements HttpSessionListener,并实现了方法sessionDestroyed。
public class SessionListener implements Http……继续阅读 »
8年前 (2016-09-18) 1803浏览
0个赞