<?xml version="1.0" encoding="utf-8"?><?xml-stylesheet href='http://feeds.feedsky.com/styles/temp01.xsl' type='text/xsl' ?><!--这是一个由Feedsy提供技术支持的Feed，为了提高读者阅读的体验，以及满足用户美化自己Feed的需要，我们设计了多种精美的Feed模板，提供给大家选择，所有最终呈现出来的样式，皆由用户自愿选择使用，未经许可，任何团体和个人，请不要擅自修改样式或者盗用，这是对于用户选择权的尊重。--><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:fs="http://www.feedsky.com/namespace/feed" xmlns:dc="http://purl.org/dc/elements/1.1/" version="2.0"><channel><atom:link href="http://feeds.feedsky.com/csdn.net/ffyd2000" type="application/rss+xml" rel="self"></atom:link><fs:self_link href="http://feeds.feedsky.com/csdn.net/ffyd2000" type="application/rss+xml"></fs:self_link><lastBuildDate>Tue, 23 Feb 2010 01:42:00 GMT</lastBuildDate><title>子魚＠NET</title><description>渤海子魚的BLOG</description><link>http://blog.csdn.net/blogrss.aspx?username=ffyd2000</link><item><title>使用 Apache Lucene 和 Solr 进行位置感知搜索</title><link>http://blog.csdn.net/ffyd2000/archive/2010/02/23/5318532.aspx</link><description>不管是通过支持 GPS 的智能手机查找最近的咖啡馆，还是通过社交站点查找附近的朋友，或是查看特定城市中运输某种商品的所有货车，越来越多的人和企业都使用位置感知的搜索服务。创建位置感知搜索服务通常属于昂贵的专用解决方案的一部分，并且一般由地理空间专家完成。不过，很流行的开源搜索库 Apache Lucene 和强大的 Lucene 搜索服务器 Apache Solr 最近添加了空间位置功能。Lucene 和 Solr 专家 Grant Ingersoll 将逐步向您介绍空间搜索的基础知识，并演示如何利用这些功能来增强您的下一个位置感知应用程序。&lt;img src=&quot;http://www1.feedsky.com/t1/335098775/ffyd2000/csdn.net/s.gif?r=http://blog.csdn.net/ffyd2000/archive/2010/02/23/5318532.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/ffyd2000/335098775/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/ffyd2000/335098775/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Tue, 23 Feb 2010 09:42:00 +0800</pubDate><author>渤海子魚</author><guid isPermaLink="false">http://blog.csdn.net/ffyd2000/archive/2010/02/23/5318532.aspx</guid><dc:creator>渤海子魚</dc:creator><fs:srclink>http://blog.csdn.net/ffyd2000/archive/2010/02/23/5318532.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/ffyd2000/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/ffyd2000/~1075351/335098775/1075350</fs:itemid></item><item><title>Google Maps API in Java ME</title><link>http://blog.csdn.net/ffyd2000/archive/2010/01/22/5224520.aspx</link><description>&lt;br /&gt;Here is a simple library to query Google Maps with the following features: geocode addresses to their geographic coordinates retrieve static images with given custom size, format and zoom &lt;br /&gt;To see a live sample of this API, you can check here: Java ME Google Maps API sample MIDletContents[hide]1Get your own Google Maps API Key2Use a Proxy server to access Google Map services3Source code: GoogleMaps class4Utility method for map scrolling5Source code: sample usage&lt;br /&gt;Get your own Googl&lt;img src=&quot;http://www1.feedsky.com/t1/335098776/ffyd2000/csdn.net/s.gif?r=http://blog.csdn.net/ffyd2000/archive/2010/01/22/5224520.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/ffyd2000/335098776/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/ffyd2000/335098776/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Fri, 22 Jan 2010 15:24:00 +0800</pubDate><author>渤海子魚</author><guid isPermaLink="false">http://blog.csdn.net/ffyd2000/archive/2010/01/22/5224520.aspx</guid><dc:creator>渤海子魚</dc:creator><fs:srclink>http://blog.csdn.net/ffyd2000/archive/2010/01/22/5224520.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/ffyd2000/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/ffyd2000/~1075351/335098776/1075350</fs:itemid></item><item><title>自己写的j2me下用的双缓冲消息队列类，不知对不对</title><link>http://blog.csdn.net/ffyd2000/archive/2009/12/24/5068331.aspx</link><description>&lt;br /&gt;import java.util.Vector;
/***
 * 双缓冲消息队列
 * @author Donald
 *
 */
public class MessageQueueThread extends Thread {
    public int capacity=50;
    public boolean autoIncrement=false;
    private Vector readQueue=new Vector(capacity);
    private Vector writeQueue=new Vector(capacity);
//	private Object readLock=new Object();
    private Object writeLock=new Object();
    private MessageHandler handler;

    public void run(){
        if(handler==null)
            return;&lt;img src=&quot;http://www1.feedsky.com/t1/335098777/ffyd2000/csdn.net/s.gif?r=http://blog.csdn.net/ffyd2000/archive/2009/12/24/5068331.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/ffyd2000/335098777/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/ffyd2000/335098777/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Thu, 24 Dec 2009 12:05:00 +0800</pubDate><author>渤海子魚</author><guid isPermaLink="false">http://blog.csdn.net/ffyd2000/archive/2009/12/24/5068331.aspx</guid><dc:creator>渤海子魚</dc:creator><fs:srclink>http://blog.csdn.net/ffyd2000/archive/2009/12/24/5068331.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/ffyd2000/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/ffyd2000/~1075351/335098777/1075350</fs:itemid></item><item><title>Google Bookmarks API Guide</title><link>http://blog.csdn.net/ffyd2000/archive/2009/12/21/5046017.aspx</link><description>转过来免得要看的时候又得翻FFUK&lt;img src=&quot;http://www1.feedsky.com/t1/335098778/ffyd2000/csdn.net/s.gif?r=http://blog.csdn.net/ffyd2000/archive/2009/12/21/5046017.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/ffyd2000/335098778/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/ffyd2000/335098778/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Mon, 21 Dec 2009 10:18:00 +0800</pubDate><author>渤海子魚</author><guid isPermaLink="false">http://blog.csdn.net/ffyd2000/archive/2009/12/21/5046017.aspx</guid><dc:creator>渤海子魚</dc:creator><fs:srclink>http://blog.csdn.net/ffyd2000/archive/2009/12/21/5046017.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/ffyd2000/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/ffyd2000/~1075351/335098778/1075350</fs:itemid></item><item><title>J2ME BUG 收集</title><link>http://blog.csdn.net/ffyd2000/archive/2009/12/17/5025916.aspx</link><description>2009年07月21日 星期二 16:01&lt;br /&gt;------------------------------------------------&lt;br /&gt;n7610系列&lt;br /&gt;&lt;br /&gt;手机屏幕：176*204&lt;br /&gt;大量使用2.0的翻转方法很容易死机（最好用诺基亚自带的翻转方法）；&lt;br /&gt;&lt;br /&gt;-------------------------------------------------&lt;br /&gt;n78(n73 系列)&lt;br /&gt;据我们老板的推测，打包的时候要注意NAME的奇偶个数。（偶数个字符有时候安装不了）&lt;br /&gt; MOTO 小C系列 &lt;br /&gt;常见机型：C650&lt;br /&gt;手机屏幕：128*128&lt;br /&gt;游戏屏幕：128*116&lt;br /&gt;非全屏屏幕：128*100&lt;br /&gt;JAVA联网：CMWAP需要代理&lt;br /&gt;字体大小：17*17，一行约7个中文字，内置一种字体，任何字体选项均为默认字体&lt;br /&gt;MIDP：2.0&lt;br /&gt;CLDC：1.0&lt;br /&gt;JAVA单个容量限制：标准100K（实际无限制，小于手机本身内存）&lt;img src=&quot;http://www1.feedsky.com/t1/335098779/ffyd2000/csdn.net/s.gif?r=http://blog.csdn.net/ffyd2000/archive/2009/12/17/5025916.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/ffyd2000/335098779/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/ffyd2000/335098779/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Thu, 17 Dec 2009 15:47:00 +0800</pubDate><author>渤海子魚</author><guid isPermaLink="false">http://blog.csdn.net/ffyd2000/archive/2009/12/17/5025916.aspx</guid><dc:creator>渤海子魚</dc:creator><fs:srclink>http://blog.csdn.net/ffyd2000/archive/2009/12/17/5025916.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/ffyd2000/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/ffyd2000/~1075351/335098779/1075350</fs:itemid></item><item><title>UUID.java-J2ME 中javax.bluetooth里的UUID生成类</title><link>http://blog.csdn.net/ffyd2000/archive/2009/11/25/4871063.aspx</link><description>&lt;br /&gt; /*
 *
 *
 * Portions Copyright  2000-2007 Sun Microsystems, Inc. All Rights
 * Reserved.  Use is subject to license terms.
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER
 * 
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License version
 * 2 only, as published by the Free Software Foundation.
 * 
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANT&lt;img src=&quot;http://www1.feedsky.com/t1/335098780/ffyd2000/csdn.net/s.gif?r=http://blog.csdn.net/ffyd2000/archive/2009/11/25/4871063.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/ffyd2000/335098780/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/ffyd2000/335098780/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Wed, 25 Nov 2009 14:38:00 +0800</pubDate><author>渤海子魚</author><guid isPermaLink="false">http://blog.csdn.net/ffyd2000/archive/2009/11/25/4871063.aspx</guid><dc:creator>渤海子魚</dc:creator><fs:srclink>http://blog.csdn.net/ffyd2000/archive/2009/11/25/4871063.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/ffyd2000/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/ffyd2000/~1075351/335098780/1075350</fs:itemid></item><item><title>Nokia s60v5 j2me禁用softkeypad</title><link>http://blog.csdn.net/ffyd2000/archive/2009/10/15/4674277.aspx</link><description>&lt;br /&gt;j2me程序在s60v5上运行时会被自带的softkeypad占去半个屏幕，要禁用softkeypad需要在JAD文件中加入&lt;br /&gt;Nokia-MIDlet-On-Screen-Keypad: no&lt;br /&gt;&lt;br /&gt;附JAD and JAR manifest attributes：&lt;br /&gt;Table: Nokia proprietary JAD/MANIFEST attributes&lt;br /&gt;Attribute Name&lt;br /&gt;Since S60 Edition&lt;br /&gt;Description&lt;br /&gt;Value&lt;br /&gt;Nokia-MIDlet-Category&lt;br /&gt;2nd Edition&lt;br /&gt;Defines localized installation folder for MIDlet.&lt;br /&gt;Category can be one of the following:&lt;br /&gt;Application (all S60 1st Edition MIDlets use this)&lt;br /&gt;Game&lt;br /&gt;Nokia-MI&lt;img src=&quot;http://www1.feedsky.com/t1/335098781/ffyd2000/csdn.net/s.gif?r=http://blog.csdn.net/ffyd2000/archive/2009/10/15/4674277.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/ffyd2000/335098781/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/ffyd2000/335098781/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Thu, 15 Oct 2009 10:10:00 +0800</pubDate><author>渤海子魚</author><guid isPermaLink="false">http://blog.csdn.net/ffyd2000/archive/2009/10/15/4674277.aspx</guid><dc:creator>渤海子魚</dc:creator><fs:srclink>http://blog.csdn.net/ffyd2000/archive/2009/10/15/4674277.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/ffyd2000/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/ffyd2000/~1075351/335098781/1075350</fs:itemid></item><item><title>Android Animations 3D flip</title><link>http://blog.csdn.net/ffyd2000/archive/2009/09/28/4604040.aspx</link><description>Android Animations 3D flipLabels: 3D, Android, Animations, Camera, FrameLayoutIn this post we are going to look at how to create a 3D flip animation, with a FrameLayout. In the first few posts I've written on Android and animations we have only looked at the predefined animations supplied in the android.view.animations package. In fact we've only used the translate animation, but as I've mentioned before there are also rotate, scale and alpha animations. In this tutorial i want&lt;img src=&quot;http://www1.feedsky.com/t1/335098782/ffyd2000/csdn.net/s.gif?r=http://blog.csdn.net/ffyd2000/archive/2009/09/28/4604040.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/ffyd2000/335098782/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/ffyd2000/335098782/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Mon, 28 Sep 2009 10:59:00 +0800</pubDate><author>渤海子魚</author><guid isPermaLink="false">http://blog.csdn.net/ffyd2000/archive/2009/09/28/4604040.aspx</guid><dc:creator>渤海子魚</dc:creator><fs:srclink>http://blog.csdn.net/ffyd2000/archive/2009/09/28/4604040.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/ffyd2000/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/ffyd2000/~1075351/335098782/1075350</fs:itemid></item><item><title>Android transitions- slide in and slide out</title><link>http://blog.csdn.net/ffyd2000/archive/2009/09/28/4603974.aspx</link><description>I've recently been looking at the android platform and having some fun with writing some small apps. I wanted to do some interesting transitions between views, and decided to have a go at a transition were one view slides off to the left and the other sides in from the right and vice versa. Here's a video showing an example of the end result:To do this I created a simple project in eclipse using the Android plugins and made use of the ViewFlipper. So the first&lt;img src=&quot;http://www1.feedsky.com/t1/335098783/ffyd2000/csdn.net/s.gif?r=http://blog.csdn.net/ffyd2000/archive/2009/09/28/4603974.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/ffyd2000/335098783/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/ffyd2000/335098783/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Mon, 28 Sep 2009 10:46:00 +0800</pubDate><author>渤海子魚</author><guid isPermaLink="false">http://blog.csdn.net/ffyd2000/archive/2009/09/28/4603974.aspx</guid><dc:creator>渤海子魚</dc:creator><fs:srclink>http://blog.csdn.net/ffyd2000/archive/2009/09/28/4603974.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/ffyd2000/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/ffyd2000/~1075351/335098783/1075350</fs:itemid></item><item><title>Google Appengine 使用JSTL的问题</title><link>http://blog.csdn.net/ffyd2000/archive/2009/07/08/4330173.aspx</link><description>&lt;br /&gt;要在Google Appengine中使用JSTL 必须在JSP文件头上加上&lt;br /&gt;&lt;%@page isELIgnored=&quot;false&quot; %&gt; &lt;br /&gt;&lt;img src=&quot;http://www1.feedsky.com/t1/335098784/ffyd2000/csdn.net/s.gif?r=http://blog.csdn.net/ffyd2000/archive/2009/07/08/4330173.aspx&quot; border=&quot;0&quot; height=&quot;0&quot; width=&quot;0&quot; style=&quot;position:absolute&quot; /&gt;&lt;p class=&quot;fswww1&quot;&gt;&lt;a href=&quot;http://www1.feedsky.com/r/l/csdn.net/ffyd2000/335098784/art01.html&quot; target=&quot;_blank&quot;&gt;&lt;img border=&quot;0&quot; ismap=&quot;ismap&quot; src=&quot;http://www1.feedsky.com/r/i/csdn.net/ffyd2000/335098784/art01.gif&quot; onerror=&quot;this.style.display='none'&quot; /&gt;&lt;/a&gt;&lt;/p&gt;</description><pubDate>Wed, 08 Jul 2009 10:06:00 +0800</pubDate><author>渤海子魚</author><guid isPermaLink="false">http://blog.csdn.net/ffyd2000/archive/2009/07/08/4330173.aspx</guid><dc:creator>渤海子魚</dc:creator><fs:srclink>http://blog.csdn.net/ffyd2000/archive/2009/07/08/4330173.aspx</fs:srclink><fs:srcfeed>http://blog.csdn.net/ffyd2000/feed.aspx</fs:srcfeed><fs:itemid>csdn.net/ffyd2000/~1075351/335098784/1075350</fs:itemid></item></channel></rss>
