<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>德克云技术联盟 - 开发技术</title>
    <link>http://www.decoclouds.com/forum.php?mod=forumdisplay&amp;fid=53</link>
    <description>Latest 20 threads of 开发技术</description>
    <copyright>Copyright(C) 德克云技术联盟</copyright>
    <generator>Discuz! Board by Comsenz Inc.</generator>
    <lastBuildDate>Fri, 22 May 2026 16:04:36 +0000</lastBuildDate>
    <ttl>60</ttl>
    <image>
      <url>http://www.decoclouds.com/static/image/common/logo_88_31.gif</url>
      <title>德克云技术联盟</title>
      <link>http://www.decoclouds.com/</link>
    </image>
    <item>
      <title>bootstrap datepicker 属性设置 以及方法和事件</title>
      <link>http://www.decoclouds.com/forum.php?mod=viewthread&amp;tid=233</link>
      <description><![CDATA[原文地址：http://www.cnblogs.com/cunkouzh/p/5102619.html

DatePicker支持鼠标点选日期，同时还可以通过键盘控制选择：
page up/down - 上一月、下一月 
ctrl+page up/down - 上一年、下一年 
ctrl+home - 当前月或最后一次打开的日期 
ctrl+left/right - 上一天、下 ...]]></description>
      <category>开发技术</category>
      <author>袁康慨</author>
      <pubDate>Tue, 28 Feb 2017 09:15:26 +0000</pubDate>
    </item>
    <item>
      <title>php调用webservice的几种方法</title>
      <link>http://www.decoclouds.com/forum.php?mod=viewthread&amp;tid=230</link>
      <description><![CDATA[1.WSDL模式：




[*]$soap = new SoapClient(\&quot;http://192.168.6.69:8899/Service1.asmx?wsdl\&quot;);
[*]$result2 = $soap-&gt;HelloWorld(array(
[*]    \'myName\'=&gt;\'aaa\',
[*]    \'youName\'=&gt;\'bbb\'
[*]));
[*]print_r($result2);

$soap = new SoapClient(\&quot;htt]]></description>
      <category>开发技术</category>
      <author>袁康慨</author>
      <pubDate>Thu, 10 Mar 2016 08:17:50 +0000</pubDate>
    </item>
    <item>
      <title>appcan增加新纪录完了如何刷新主页面</title>
      <link>http://www.decoclouds.com/forum.php?mod=viewthread&amp;tid=226</link>
      <description><![CDATA[1、在添加完成后，最好用appcan本身的alert控件进行消息提示：
                   success : function(data) {
                        data=JSON.parse(decodeURIComponent(data));
                        appcan.window.alert({
                            tit ...]]></description>
      <category>开发技术</category>
      <author>李昭</author>
      <pubDate>Mon, 19 Oct 2015 07:27:18 +0000</pubDate>
    </item>
    <item>
      <title>eclipse中jetty启动超时了办</title>
      <link>http://www.decoclouds.com/forum.php?mod=viewthread&amp;tid=225</link>
      <description><![CDATA[由于测试中发布的项目比较多，jetty启动过程中超过了30秒，自动停止了。怎么办呢？

eclipse是可以进行启动设置的，具体办法是：

1、打开：E:\\workspace_luna\\.metadata\\.plugins\\org.eclipse.wst.server.core，
2、打开：servers.xml文件，
3、看到没，里面有对于serv ...]]></description>
      <category>开发技术</category>
      <author>李昭</author>
      <pubDate>Mon, 19 Oct 2015 07:15:41 +0000</pubDate>
    </item>
    <item>
      <title>php字符串处理函数大全</title>
      <link>http://www.decoclouds.com/forum.php?mod=viewthread&amp;tid=221</link>
      <description><![CDATA[addcslashes — 为字符串里面的部分字符添加反斜线转义字符
addslashes — 用指定的方式对字符串里面的字符进行转义
bin2hex — 将二进制数据转换成十六进制表示
chop — rtrim() 的别名函数
chr — 返回一个字符的ASCII码
chunk_split — 按一定的字符长度将字符串分割 ...]]></description>
      <category>开发技术</category>
      <author>李昭</author>
      <pubDate>Wed, 15 Apr 2015 03:03:20 +0000</pubDate>
    </item>
    <item>
      <title>swt event type</title>
      <link>http://www.decoclouds.com/forum.php?mod=viewthread&amp;tid=218</link>
      <description><![CDATA[原文位置：
http://help.eclipse.org/indigo/index.jsp?topic=%2Forg.eclipse.platform.doc.isv%2Freference%2Fapi%2Forg%2Feclipse%2Fswt%2FSWT.html

 Field Summary
static int ]]></description>
      <category>开发技术</category>
      <author>李昭</author>
      <pubDate>Mon, 30 Mar 2015 08:19:45 +0000</pubDate>
    </item>
    <item>
      <title>swt events</title>
      <link>http://www.decoclouds.com/forum.php?mod=viewthread&amp;tid=217</link>
      <description><![CDATA[原文位置：
http://help.eclipse.org/indigo/index.jsp?topic=%2Forg.eclipse.platform.doc.isv%2Freference%2Fapi%2Forg%2Feclipse%2Fswt%2Fevents%2Fpackage-summary.html]]></description>
      <category>开发技术</category>
      <author>李昭</author>
      <pubDate>Mon, 30 Mar 2015 08:14:46 +0000</pubDate>
    </item>
    <item>
      <title>SWT 同步输入框滚动条位置</title>
      <link>http://www.decoclouds.com/forum.php?mod=viewthread&amp;tid=216</link>
      <description><![CDATA[编写DFMsg客户管理端，需要两个框子，左边显示行号，右边显示报文内容。当左右两边任意一边的行发生变化，需要同步另一边输入框的行位置。截图如下：



怎么做呢？

首先页面初始化输入框，将其定位：

        textLeft = new Text(composite_2, SWT.BORDER| SWT.V_SC ...]]></description>
      <category>开发技术</category>
      <author>李昭</author>
      <pubDate>Mon, 30 Mar 2015 08:06:43 +0000</pubDate>
    </item>
    <item>
      <title>php调试工具——xdebug的安装及使用</title>
      <link>http://www.decoclouds.com/forum.php?mod=viewthread&amp;tid=211</link>
      <description><![CDATA[为什么需要Debugger?  很多PHP程序员调试使用echo、print_r()、var_dump()、printf()等，其实对 于有较丰富开发经验的程序员来说这些也已经足够了，他们往往可以在程序执行的过程中，通过输出特定变量的值可以判断程序执行是否正确，甚至效率高低也可以 看出来（当然可 ...]]></description>
      <category>开发技术</category>
      <author>李昭</author>
      <pubDate>Fri, 06 Mar 2015 03:57:13 +0000</pubDate>
    </item>
    <item>
      <title>java获取系统信息</title>
      <link>http://www.decoclouds.com/forum.php?mod=viewthread&amp;tid=208</link>
      <description><![CDATA[System.getProperty(\&quot;java.version\&quot;)                  1.6.0_10                                                        // Java 运行时环境供应商 
System.getProperty(\&quot;java.vendor\&quot;)                   Sun Microsystems Inc.                                    ...]]></description>
      <category>开发技术</category>
      <author>李昭</author>
      <pubDate>Mon, 29 Dec 2014 02:32:30 +0000</pubDate>
    </item>
    <item>
      <title>Android - 文件操作 小结</title>
      <link>http://www.decoclouds.com/forum.php?mod=viewthread&amp;tid=206</link>
      <description><![CDATA[1) 从resource的raw中读取文件数据：



 2) 从resource的asset中读取文件数据


 
二、读写/data/data/目录上的文件:?



三、读写SD卡中的文件。也就是/mnt/sdcard/目录下面的文件 ：



四、使用File类进行文件的读写：



五、另外，File还有下面一些常用的操作：

 ...]]></description>
      <category>开发技术</category>
      <author>李昭</author>
      <pubDate>Mon, 15 Dec 2014 08:59:42 +0000</pubDate>
    </item>
    <item>
      <title>在JAVA SWT 应用程序中自身重启应用</title>
      <link>http://www.decoclouds.com/forum.php?mod=viewthread&amp;tid=196</link>
      <description><![CDATA[在我们编写SWT程序的时候，有时候在程序内部进行了某些设置以后，或者对启动文件中的配置进行了一些修改以后，需要应用程序重新启动一下，怎么做呢？下面我们就来看看怎么做这个。

1、新建个SWT项

2、新建个SWT窗

3、试运行


4、能出现下面这个窗口，说明SWT项目兴 ...]]></description>
      <category>开发技术</category>
      <author>李昭</author>
      <pubDate>Wed, 05 Nov 2014 13:18:46 +0000</pubDate>
    </item>
    <item>
      <title>C#反射</title>
      <link>http://www.decoclouds.com/forum.php?mod=viewthread&amp;tid=195</link>
      <description><![CDATA[反射（Reflection）是.NET中的重要机制，通过放射，可以在运行时获得.NET中每一个类型（包括类、结构、委托、接口和枚举等）的成员，包括方法、属性、事件，以及构造函数等。还可以获得每个成员的名称、限定符和参数等。有了反射，即可对每一个类型了如指掌。如果获得了 ...]]></description>
      <category>开发技术</category>
      <author>李昭</author>
      <pubDate>Tue, 04 Nov 2014 08:43:34 +0000</pubDate>
    </item>
    <item>
      <title>c#中怎样在打开一个form后让第二个form出现一段时间后消失</title>
      <link>http://www.decoclouds.com/forum.php?mod=viewthread&amp;tid=193</link>
      <description><![CDATA[用普通的窗口，想要在软件启动的时候显示一个广告窗口，这时候需要第二个窗口（广告窗口）显示一会，然后自动消失。

代码如下：
            Form1 theForm1 = new Form1();
            theForm1.Show();
            Thread.CurrentThread.Join(5000);
            t ...]]></description>
      <category>开发技术</category>
      <author>李昭</author>
      <pubDate>Tue, 04 Nov 2014 07:58:06 +0000</pubDate>
    </item>
    <item>
      <title>Android中从任意页面退出应用</title>
      <link>http://www.decoclouds.com/forum.php?mod=viewthread&amp;tid=191</link>
      <description><![CDATA[首先定义全局类：SysApplication.java
package deco.sfe.global;

import java.util.LinkedList; 
import java.util.List; 
import android.app.Activity; 
import android.app.AlertDialog; 
import android.app.Application; 
import android.content.DialogInterface ...]]></description>
      <category>开发技术</category>
      <author>李昭</author>
      <pubDate>Tue, 04 Nov 2014 07:19:43 +0000</pubDate>
    </item>
    <item>
      <title>Android中全局异常捕获</title>
      <link>http://www.decoclouds.com/forum.php?mod=viewthread&amp;tid=190</link>
      <description><![CDATA[首先在全局变量中的onCreate事件中增加捕获入口：

MyPara.java

package deco.sfe.global;

import java.util.HashMap;

import android.app.Application;

public class MyPara extends Application{
    
    /**全局变量*/
    private String userid;
    private  ...]]></description>
      <category>开发技术</category>
      <author>李昭</author>
      <pubDate>Tue, 04 Nov 2014 07:12:15 +0000</pubDate>
    </item>
    <item>
      <title>struts2中过滤器冲突的结决方法</title>
      <link>http://www.decoclouds.com/forum.php?mod=viewthread&amp;tid=173</link>
      <description><![CDATA[struts2中有个别url不想用struts2的过滤器，可以使用一下两种方法进行处理。1.修改web.xml文件。

过滤器只对加有.action后缀的路径有效，如果需要拦截.jsp，就必须加上*.jsp才行。
优点：可以针对开发定义很规范的项目，处理面广；缺点：无法过滤无后缀名的url（如/dem ...]]></description>
      <category>开发技术</category>
      <author>陈瑶</author>
      <pubDate>Thu, 18 Sep 2014 09:53:08 +0000</pubDate>
    </item>
    <item>
      <title>android PopupWindow实现从底部弹出或滑出选择菜单或窗口</title>
      <link>http://www.decoclouds.com/forum.php?mod=viewthread&amp;tid=172</link>
      <description><![CDATA[本实例弹出窗口主要是继承PopupWindow类来实现的弹出窗体，布局可以根据自己定义设计。弹出效果主要使用了translate和alpha样式实现，具体实习如下：第一步：设计弹出窗口xml:
[*]  
[*]  
[*]  
[*]  
[*]  
[*]      
[*]      
[*]  
[*]      
[*]  
[*]      
[*]  ...]]></description>
      <category>开发技术</category>
      <author>李昭</author>
      <pubDate>Sun, 14 Sep 2014 02:12:23 +0000</pubDate>
    </item>
    <item>
      <title>Android全局变量的定义与使用</title>
      <link>http://www.decoclouds.com/forum.php?mod=viewthread&amp;tid=171</link>
      <description><![CDATA[Android应用程序开发中，有的时候我们在应用程序的任何一个地方都需要访问一个全局变量，也就是在任何一个Activity中都可以访问的变量。它不会因为Activity的生命周期结束而消失。要实现应用程序级的变量，我们可以通过Application这个类来实现。

[*]class MyApp exten ...]]></description>
      <category>开发技术</category>
      <author>李昭</author>
      <pubDate>Sat, 13 Sep 2014 11:07:19 +0000</pubDate>
    </item>
    <item>
      <title>mysql数据库连接字符串参数说明</title>
      <link>http://www.decoclouds.com/forum.php?mod=viewthread&amp;tid=170</link>
      <description><![CDATA[找了好半天，然后验证了好半天，才终于把这几个参数搞明白。


1、网上提供的参数有两种，是因为连接字符串有两类驱动造成的。以下说明以官方发布的mysql的jdbc为驱动的。
2、参数的配置之间有关联的。比如useUnicode和[/backcolor]characterEncoding，在设置不正确时有 ...]]></description>
      <category>开发技术</category>
      <author>李昭</author>
      <pubDate>Wed, 20 Aug 2014 02:52:05 +0000</pubDate>
    </item>
  </channel>
</rss>