我想寫一個簡單的應用程序,它打開一個網站在一個名爲當前週數的文件夾中。 因此,例如:如何獲得當前週數?
http://www.website.de/content/35/index.html
那基本結構。 感謝您的幫助。
我想寫一個簡單的應用程序,它打開一個網站在一個名爲當前週數的文件夾中。 因此,例如:如何獲得當前週數?
http://www.website.de/content/35/index.html
那基本結構。 感謝您的幫助。
這是你如何獲得當前的週數:
Calendar calendar = Calendar.getInstance();
int week = calendar.get(Calendar.WEEK_OF_YEAR)
這是你如何打開一個網站:
Intent intent = new Intent();
intent.setAction(Intent.ACTION_VIEW);
intent.addCategory(Intent.CATEGORY_BROWSABLE);
intent.setData(Uri.parse("http://www.website.de/content/"+week+"/index.html"));
startActivity(intent);
導入java.util.Calendar
和實施:
public static int getWeek() {
return Calendar.getInstance().get(Calendar.WEEK_OF_YEAR);
}
使用軋光對於這樣的 -
Calendar calender = Calendar.getInstance();
Log.d("Current Week:" + calender.get(Calendar.WEEK_OF_YEAR));
謝謝!我會嘗試一下 !! – Needforbleed
[RTFM(http://developer.android.com/reference/java/util/Calendar.html#WEEK_OF_YEAR) –