下载
开发软件
账户
下载
开发软件
登录
我忘记用户名和密码了
创建帐户
语言
帮助
语言
帮助
×
登录
登录名
密码
×
我忘记用户名和密码了
简体中文翻译状态
类别:
软件
用户
PersonalForge
Magazine
Wiki
搜索
OSDN
>
浏览软件
>
Software Development
>
Libraries
>
JunkUtil
>
论坛
>
公開討議
>
Android対応
JunkUtil
描述
项目概述
开发人员仪表板
项目的网页
开发人员
Image Gallery
List of RSS Feeds
Activity
统计
历史
下载
List of Releases
统计
源代码
Code Repository list
Subversion
查看仓库
任务单
Ticket List
里程碑列表
Type List
组件列表
List of frequently used tickets/RSS
Submit New Ticket
文档
FrontPage
Title index
Recent changes
沟通
论坛
List of Forums
パッチ (1)
ヘルプ (1)
公開討議 (50)
バグ報告 (12)
開発者 (4)
Mailing Lists
list of ML
新闻
论坛:
公開討議
(Thread #30473)
Return to Thread list
RSS
Android対応 (2011-09-26 16:20 by
coffee
#59765)
回复
Create ticket
Android対応について、ここに記す。
回复到 #59765
×
主体
Body
Reply To Message #59765 > Android対応について、ここに記す。
You can not use Wiki syntax
You are not logged in. To discriminate your posts from the rest, you need to pick a nickname. (The uniqueness of nickname is not reserved. It is possible that someone else could use the exactly same nickname. If you want assurance of your identity, you are recommended to login before posting.)
登录
Nickname
预览
Post
取消
RE: Android対応 (2011-09-26 16:25 by
coffee
#59766)
回复
Create ticket
現在の実装だと、Android環境に以下のクラスが無いので、
sun.misc.BASE64Decoder
sun.misc.BASE64Encoder
これを使うjunkutil.crypt.DESは動かない。
同様に、sun.misc.HexDumpEncoderを使う
junkutil.common.DataDumper#dumpByteArrayは動かない。
回复到
#59765
回复到 #59766
×
主体
Body
Reply To Message #59766 > 現在の実装だと、Android環境に以下のクラスが無いので、 > sun.misc.BASE64Decoder > sun.misc.BASE64Encoder > これを使うjunkutil.crypt.DESは動かない。 > > 同様に、sun.misc.HexDumpEncoderを使う > junkutil.common.DataDumper#dumpByteArrayは動かない。
You can not use Wiki syntax
You are not logged in. To discriminate your posts from the rest, you need to pick a nickname. (The uniqueness of nickname is not reserved. It is possible that someone else could use the exactly same nickname. If you want assurance of your identity, you are recommended to login before posting.)
登录
Nickname
预览
Post
取消
RE: Android対応 (2011-09-26 16:27 by
coffee
#59767)
回复
Create ticket
前者について、Public Domainで実装されたBase64.javaが存在する。
これを利用できるかどうか、Public Domainについて調査を行う必要あり。
回复到
#59765
回复到 #59767
×
主体
Body
Reply To Message #59767 > 前者について、Public Domainで実装されたBase64.javaが存在する。 > これを利用できるかどうか、Public Domainについて調査を行う必要あり。
You can not use Wiki syntax
You are not logged in. To discriminate your posts from the rest, you need to pick a nickname. (The uniqueness of nickname is not reserved. It is possible that someone else could use the exactly same nickname. If you want assurance of your identity, you are recommended to login before posting.)
登录
Nickname
预览
Post
取消
RE: Android対応 (2011-09-26 16:28 by
coffee
#59768)
回复
Create ticket
後者については、車輪の再発明を行う。
回复到
#59765
回复到 #59768
×
主体
Body
Reply To Message #59768 > 後者については、車輪の再発明を行う。
You can not use Wiki syntax
You are not logged in. To discriminate your posts from the rest, you need to pick a nickname. (The uniqueness of nickname is not reserved. It is possible that someone else could use the exactly same nickname. If you want assurance of your identity, you are recommended to login before posting.)
登录
Nickname
预览
Post
取消
RE: Android対応 (2011-09-26 23:09 by
coffee
#59776)
回复
Create ticket
・Base64.javaを導入した。
これでjunkutil.crypt.DESは動くはずである。
・sun.misc.HexDumpEncoder 相当の処理を実装した。
これでjunkutil.common.DataDumper#dumpByteArrayは動くはずである。
詳細な検証は明後日に行う。
回复到
#59765
回复到 #59776
×
主体
Body
Reply To Message #59776 > ・Base64.javaを導入した。 > これでjunkutil.crypt.DESは動くはずである。 > ・sun.misc.HexDumpEncoder 相当の処理を実装した。 > これでjunkutil.common.DataDumper#dumpByteArrayは動くはずである。 > > 詳細な検証は明後日に行う。
You can not use Wiki syntax
You are not logged in. To discriminate your posts from the rest, you need to pick a nickname. (The uniqueness of nickname is not reserved. It is possible that someone else could use the exactly same nickname. If you want assurance of your identity, you are recommended to login before posting.)
登录
Nickname
预览
Post
取消
RE: Android対応 (2011-09-27 09:54 by
coffee
#59785)
回复
Create ticket
2011/09/27
ファイルI/Oの検証のため、AndroidFileUtilTestを作成。SDカードの読み書きをテストした。
SDカードへのアクセスには、AndroidManifest.xml に
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
の記述が必要。
また、SDカードのパスは
Environment.getExternalStorageDirectory().getPath()
で取得する。
結果、問題なく読み書きが行えることを確認した。
1.0.8は、Andriod対応となる予定
回复到
#59765
回复到 #59785
×
主体
Body
Reply To Message #59785 > 2011/09/27 > ファイルI/Oの検証のため、AndroidFileUtilTestを作成。SDカードの読み書きをテストした。 > SDカードへのアクセスには、AndroidManifest.xml に > <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> > の記述が必要。 > また、SDカードのパスは > Environment.getExternalStorageDirectory().getPath() > で取得する。 > 結果、問題なく読み書きが行えることを確認した。 > > 1.0.8は、Andriod対応となる予定
You can not use Wiki syntax
You are not logged in. To discriminate your posts from the rest, you need to pick a nickname. (The uniqueness of nickname is not reserved. It is possible that someone else could use the exactly same nickname. If you want assurance of your identity, you are recommended to login before posting.)
登录
Nickname
预览
Post
取消
RE: Android対応 (2011-09-27 22:19 by
coffee
#59795)
回复
Create ticket
ニュース
車輪の再発明で知られるJavaライブラリ開発プロジェクトJunkUtilは
9/28日、Androidエミュレータ上での動作検証を完了しました。
Android上でのJunkUtilの使用上の注意点は以下の通りです。
・junkutil.excel を使うには別途POIライブラリが必要。
・junkutil.gui はSwing依存のため動かない。
その他のクラスは問題なくAndroid上で動くことを確認しました。
さあ、みなさんのAndroid開発にjunkUtilを導入してみましょう!!
回复到
#59765
回复到 #59795
×
主体
Body
Reply To Message #59795 > ニュース > > 車輪の再発明で知られるJavaライブラリ開発プロジェクトJunkUtilは > 9/28日、Androidエミュレータ上での動作検証を完了しました。 > > Android上でのJunkUtilの使用上の注意点は以下の通りです。 > > ・junkutil.excel を使うには別途POIライブラリが必要。 > ・junkutil.gui はSwing依存のため動かない。 > > その他のクラスは問題なくAndroid上で動くことを確認しました。 > さあ、みなさんのAndroid開発にjunkUtilを導入してみましょう!!
You can not use Wiki syntax
You are not logged in. To discriminate your posts from the rest, you need to pick a nickname. (The uniqueness of nickname is not reserved. It is possible that someone else could use the exactly same nickname. If you want assurance of your identity, you are recommended to login before posting.)
登录
Nickname
预览
Post
取消
RE: Android対応 (2011-10-05 18:35 by
coffee
#59950)
回复
Create ticket
android marketのアプリ毎のpackage名は一度登録すると
変更も削除も重複も再利用もできない、ということらしい。
今後のアプリでは慎重に決めることにしよう……。
回复到
#59765
回复到 #59950
×
主体
Body
Reply To Message #59950 > android marketのアプリ毎のpackage名は一度登録すると > 変更も削除も重複も再利用もできない、ということらしい。 > > 今後のアプリでは慎重に決めることにしよう……。
You can not use Wiki syntax
You are not logged in. To discriminate your posts from the rest, you need to pick a nickname. (The uniqueness of nickname is not reserved. It is possible that someone else could use the exactly same nickname. If you want assurance of your identity, you are recommended to login before posting.)
登录
Nickname
预览
Post
取消
RE: Android対応 (2011-10-05 23:07 by
coffee
#59954)
回复
Create ticket
2011/10/05
Androidがある程度分かってきた。今後、
junkutil.andriod.Storage#hasSdCard
junkutil.andriod.Storage#getSdCardPath
などを追加するかもしれない。しないかもしれない。
回复到
#59765
回复到 #59954
×
主体
Body
Reply To Message #59954 > 2011/10/05 > Androidがある程度分かってきた。今後、 > junkutil.andriod.Storage#hasSdCard > junkutil.andriod.Storage#getSdCardPath > などを追加するかもしれない。しないかもしれない。
You can not use Wiki syntax
You are not logged in. To discriminate your posts from the rest, you need to pick a nickname. (The uniqueness of nickname is not reserved. It is possible that someone else could use the exactly same nickname. If you want assurance of your identity, you are recommended to login before posting.)
登录
Nickname
预览
Post
取消