我有一个获取RSS Feed的移动应用。 RSS订阅源上的日期显示2011年10月28日星期五格林尼治标准时间17:30:00,我希望将其作为cst时间标准dd / mm / yyyy和时间的短日期。我的应用程序的代码如下。任何帮助都会很棒这是第一次使用Adobe Flash Builder。
<?xml version="1.0" encoding="utf-8"?>
<s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:ns1="*"
backgroundColor="#74171E" title="Mediacom 2 / Paulbunyan 32"
viewActivate="refresh()">
<fx:Script>
<![CDATA[
protected function getData():void
{
getDataResult.token = iCTVChannel232.getData();
}
public function refresh(): void {
getData();
}
]]>
</fx:Script>
<fx:Declarations>
<s:CallResponder id="getDataResult"/>
<ns1:ICTVChannel232 id="iCTVChannel232"/>
</fx:Declarations>
<s:DataGrid id="dataGrid" left="10" right="10" top="10" bottom="10">
<s:columns>
<s:ArrayList>
<s:GridColumn dataField="pubDate" width="65" headerText="Date"></s:GridColumn>
<s:GridColumn dataField="title" headerText="Title"></s:GridColumn>
</s:ArrayList>
</s:columns>
<s:AsyncListView list="{getDataResult.lastResult}"/>
</s:DataGrid>
<s:actionContent>
<s:Button icon="@Embed('/assets/refreshico.png')"
click="Object(navigator.activeView).refresh()"/>
</s:actionContent>
</s:View>
答案 0 :(得分:0)
得到约会,我想我会做这样的事情(诚然,这可能不是最好的方式!):
//Making the Strings
private var getFeed:String = somehowGetRSSFeed();
private var theDateString:String = getMonth() +
"/" +
getDay() +
"/" +
getYear();
//gets the month from the position of 9 and out to three places and make it a number
public function getMonth()
{
switch(getFeed.substr(9, 3).toUpper())
{
case "JAN"
{
return "01";
}
.
.
.
case "DEC"
{
return "12";
}
}
}
public function getDay()
{
return getFeed.substr(5, 2);
}
public function getYear()
{
return getFeed.substr(12, 4);
}
我认为这会奏效。你必须在我做捷径的地方做出改变,但我认为你可以搞清楚。
另外,我不确定我是否真的为字符串添加了正确的位置,因此您可能需要更改它们。