当前位置: 首页>>代码示例>>Java>>正文


Java DateFormat.getDateTimeInstance方法代码示例

本文整理汇总了Java中java.text.DateFormat.getDateTimeInstance方法的典型用法代码示例。如果您正苦于以下问题:Java DateFormat.getDateTimeInstance方法的具体用法?Java DateFormat.getDateTimeInstance怎么用?Java DateFormat.getDateTimeInstance使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在java.text.DateFormat的用法示例。


在下文中一共展示了DateFormat.getDateTimeInstance方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: main

import java.text.DateFormat; //导入方法依赖的package包/类
public static void main(String[] arg)
        {
                int result = 0;
                Locale loc = new Locale("ko","KR");
                Date now = new Date(108, Calendar.APRIL, 9);

                DateFormat df =
                   DateFormat.getDateTimeInstance(DateFormat.DEFAULT, DateFormat.SHORT,loc);
                SimpleDateFormat sdf = new SimpleDateFormat("",loc);
                sdf.applyPattern("yyyy. M. d a h:mm");
                if( !sdf.format(now).equals(df.format(now))){
                 result++;
                 System.out.println("error at " + sdf.format(now));
                 }
                df =  DateFormat.getDateTimeInstance(DateFormat.LONG, DateFormat.MEDIUM,loc);
                sdf.applyPattern("yyyy'\ub144' M'\uc6d4' d'\uc77c' '('EE')' a h:mm:ss");
                if( !sdf.format(now).equals(df.format(now))){
                 result++;
                 System.out.println("error at " + sdf.format(now));
                 }
                df = DateFormat.getDateTimeInstance(DateFormat.MEDIUM, DateFormat.LONG,loc);
                sdf.applyPattern("yyyy. M. d a h'\uc2dc' mm'\ubd84' ss'\ucd08'");
                if( !sdf.format(now).equals(df.format(now))){
                 result++;
                 System.out.println("error at " + sdf.format(now));
                 }
                df = DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.FULL,loc);
                sdf.applyPattern("yy. M. d a h'\uc2dc' mm'\ubd84' ss'\ucd08' z");
                if( !sdf.format(now).equals(df.format(now))){
                 result++;
                 System.out.println("error at " + sdf.format(now));
                 }

           if(result > 0) throw new RuntimeException();
}
 
开发者ID:AdoptOpenJDK,项目名称:openjdk-jdk10,代码行数:36,代码来源:Bug4395196.java

示例2: getCrashReport

import java.text.DateFormat; //导入方法依赖的package包/类
private String getCrashReport(Throwable ex) {
        StringBuffer exceptionStr = new StringBuffer();
//        String mtype = android.os.Build.MODEL; // 手机型号
//        String mtyb= android.os.Build.BRAND;//手机品牌
//        String cpuAbi = android.os.Build.CPU_ABI;//cpu架构
//        String sdk = android.os.Build.VERSION.SDK;//sdk版本号
//        String release = android.os.Build.VERSION.RELEASE;//依赖的系统版本号
//        String device = android.os.Build.DEVICE;//设备
//        String manufacturer = android.os.Build.MANUFACTURER;//手机品牌
        exceptionStr.append("Android: " + android.os.Build.VERSION.RELEASE
                + "(" + android.os.Build.MODEL + ")\n");

        Date date = new Date();
        DateFormat format = DateFormat
                .getDateTimeInstance();
        String t = format.format(date);
        exceptionStr.append("time: " + t + "\n");

        exceptionStr.append("Exception: " + ex.getMessage() + "\n");
        StackTraceElement[] elements = ex.getStackTrace();
        for (int i = 0; i < elements.length; i++) {
            exceptionStr.append(elements[i].toString() + "\n");
        }
        return exceptionStr.toString();
    }
 
开发者ID:coding-dream,项目名称:TPlayer,代码行数:26,代码来源:CrashHandler.java

示例3: addNote

import java.text.DateFormat; //导入方法依赖的package包/类
private void addNote() {
    String noteText = editText.getText().toString();
    editText.setText("");

    final DateFormat df = DateFormat.getDateTimeInstance(DateFormat.MEDIUM, DateFormat.MEDIUM);
    String comment = "Added on " + df.format(new Date());

    Note note = new Note();
    note.setText(noteText);
    note.setComment(comment);
    note.setDate(new Date());
    note.setType(NoteType.TEXT);
    noteDao.insert(note);
    Log.d("DaoExample", "Inserted new note, ID: " + note.getId());

    updateNotes();
}
 
开发者ID:weiwenqiang,项目名称:GitHub,代码行数:18,代码来源:NoteActivity.java

示例4: append

import java.text.DateFormat; //导入方法依赖的package包/类
@Override
public void append(LoggingEvent event) {
    boolean displayIsFine = display == null || display.isDisposed();
    boolean parentIsFine = parent == null || parent.isDisposed();
    if(displayIsFine || parentIsFine || text == null) {
        return;
    }
    DateFormat dateTimeFormat = DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.FULL, locale);
    Date time = new Date(event.getTimeStamp());
    String dateTime = dateTimeFormat.format(time);
    String excMessage;
    Object message = event.getMessage();
    if (message instanceof String) {
        excMessage = (String) message;
    } else {
        return;
    }
    final String logMessage = String.format("[%s] %s%n", dateTime, excMessage);
    parent.getDisplay().asyncExec(() -> {
        if (!text.isDisposed()) {
            text.append(logMessage);
        }
    });
}
 
开发者ID:technology16,项目名称:pgsqlblocks,代码行数:25,代码来源:UIAppender.java

示例5: rerun

import java.text.DateFormat; //导入方法依赖的package包/类
private void rerun(StatusBean bean) {

		try {
			final DateFormat format = DateFormat.getDateTimeInstance();
			boolean ok = MessageDialog.openQuestion(getViewSite().getShell(), "Confirm resubmission "+bean.getName(),
					  "Are you sure you want to rerun "+bean.getName()+" submitted on "+format.format(new Date(bean.getSubmissionTime()))+"?");

			if (!ok) return;

			final StatusBean copy = bean.getClass().newInstance();
			copy.merge(bean);
			copy.setUniqueId(UUID.randomUUID().toString());
			copy.setMessage("Rerun of "+bean.getName());
			copy.setStatus(org.eclipse.scanning.api.event.status.Status.SUBMITTED);
			copy.setPercentComplete(0.0);
			copy.setSubmissionTime(System.currentTimeMillis());

			queueConnection.submit(copy, true);

			reconnect();

		} catch (Exception e) {
			ErrorDialog.openError(getViewSite().getShell(), "Cannot rerun "+bean.getName(), "Cannot rerun "+bean.getName()+"\n\nPlease contact your support representative.",
					new Status(IStatus.ERROR, Activator.PLUGIN_ID, e.getMessage()));
		}
	}
 
开发者ID:eclipse,项目名称:scanning,代码行数:27,代码来源:StatusQueueView.java

示例6: run

import java.text.DateFormat; //导入方法依赖的package包/类
public void run() throws Exception {
  Date startTime = new Date();
  setUp();
  DateFormat formatter = DateFormat.getDateTimeInstance();
  System.out.println("Test started at: " + formatter.format(startTime));
  runQueries();
  printSummary();
  tearDown();
  Date endTime = new Date();
  System.out.println("Test ended at: " + formatter.format(endTime));
  long durationMs = endTime.getTime() - startTime.getTime();
  long durationS = durationMs / 1000;
  long durationM = durationS / 60;
  long durationMM = durationM % 60;
  long durationH = durationM / 60;
  System.out.println("Test took " + durationH + "hrs, " + durationMM + "min.");
}
 
开发者ID:ampool,项目名称:monarch,代码行数:18,代码来源:PerfQuery.java

示例7: getDateTimeInstance

import java.text.DateFormat; //导入方法依赖的package包/类
/**
 * <p>Gets a date/time formatter instance using the specified style,
 * time zone and locale.</p>
 * 
 * @param dateStyle  date style: FULL, LONG, MEDIUM, or SHORT
 * @param timeStyle  time style: FULL, LONG, MEDIUM, or SHORT
 * @param timeZone  optional time zone, overrides time zone of
 *  formatted date
 * @param locale  optional locale, overrides system locale
 * @return a localized standard date/time formatter
 * @throws IllegalArgumentException if the Locale has no date/time
 *  pattern defined
 */
public static synchronized FastDateFormat getDateTimeInstance(int dateStyle, int timeStyle, TimeZone timeZone,
        Locale locale) {

    Object key = new Pair(new Integer(dateStyle), new Integer(timeStyle));
    if (timeZone != null) {
        key = new Pair(key, timeZone);
    }
    if (locale == null) {
        locale = Locale.getDefault();
    }
    key = new Pair(key, locale);

    FastDateFormat format = (FastDateFormat) cDateTimeInstanceCache.get(key);
    if (format == null) {
        try {
            SimpleDateFormat formatter = (SimpleDateFormat) DateFormat.getDateTimeInstance(dateStyle, timeStyle,
                    locale);
            String pattern = formatter.toPattern();
            format = getInstance(pattern, timeZone, locale);
            cDateTimeInstanceCache.put(key, format);

        } catch (ClassCastException ex) {
            throw new IllegalArgumentException("No date time pattern for locale: " + locale);
        }
    }
    return format;
}
 
开发者ID:lamsfoundation,项目名称:lams,代码行数:41,代码来源:FastDateFormat.java

示例8: getAudioFilename

import java.text.DateFormat; //导入方法依赖的package包/类
public File getAudioFilename() {
    // Get the directory for the user's public pictures directory.
    File dir = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_MUSIC);
    if(!dir.exists()) {
        if(!dir.mkdirs()) {
            Log.e(TAG, "Failed to create directory");
        }
    }

    Calendar c = Calendar.getInstance();
    DateFormat sdf = DateFormat.getDateTimeInstance();
    String filename = "voice_" + sdf.format(c.getTime());

    return new File(dir, filename + ".3gp");
}
 
开发者ID:Samsung,项目名称:microbit,代码行数:16,代码来源:AudioRecorderActivity.java

示例9: buildHistory

import java.text.DateFormat; //导入方法依赖的package包/类
/**
 * <p>Builds a text representation of the scanning history. Each scan is encoded on one
 * line, terminated by a line break (\r\n). The values in each line are comma-separated,
 * and double-quoted. Double-quotes within values are escaped with a sequence of two
 * double-quotes. The fields output are:</p>
 *
 * <ol>
 *  <li>Raw text</li>
 *  <li>Display text</li>
 *  <li>Format (e.g. QR_CODE)</li>
 *  <li>Unix timestamp (milliseconds since the epoch)</li>
 *  <li>Formatted version of timestamp</li>
 *  <li>Supplemental info (e.g. price info for a product barcode)</li>
 * </ol>
 */
CharSequence buildHistory() {
  SQLiteOpenHelper helper = new DBHelper(activity);
  SQLiteDatabase db = null;
  Cursor cursor = null;
  try {
    db = helper.getWritableDatabase();
    cursor = db.query(DBHelper.TABLE_NAME,
                      COLUMNS,
                      null, null, null, null,
                      DBHelper.TIMESTAMP_COL + " DESC");

    DateFormat format = DateFormat.getDateTimeInstance(DateFormat.MEDIUM, DateFormat.MEDIUM);
    StringBuilder historyText = new StringBuilder(1000);
    while (cursor.moveToNext()) {

      historyText.append('"').append(massageHistoryField(cursor.getString(0))).append("\",");
      historyText.append('"').append(massageHistoryField(cursor.getString(1))).append("\",");
      historyText.append('"').append(massageHistoryField(cursor.getString(2))).append("\",");
      historyText.append('"').append(massageHistoryField(cursor.getString(3))).append("\",");

      // Add timestamp again, formatted
      long timestamp = cursor.getLong(3);
      historyText.append('"').append(massageHistoryField(
          format.format(new Date(timestamp)))).append("\",");

      // Above we're preserving the old ordering of columns which had formatted data in position 5

      historyText.append('"').append(massageHistoryField(cursor.getString(4))).append("\"\r\n");
    }
    return historyText;
  } finally {
    close(cursor, db);
  }
}
 
开发者ID:amap-demo,项目名称:weex-3d-map,代码行数:50,代码来源:HistoryManager.java

示例10: fill

import java.text.DateFormat; //导入方法依赖的package包/类
private void fill(File f) {
    File[]dirs = f.listFiles();
    this.setTitle("Current Dir: "+f.getName());
    List<Item>dir = new ArrayList<>();
    List<Item>fls = new ArrayList<>();
    try{
        for(File ff: dirs) {
            Date lastModDate = new Date(ff.lastModified());
            DateFormat formater = DateFormat.getDateTimeInstance();
            String date_modify = formater.format(lastModDate);
            if(ff.isDirectory()){
                File[] fbuf = ff.listFiles();
                int buf = 0;
                if(fbuf != null){
                    buf = fbuf.length;
                }
                else buf = 0;
                String num_item = String.valueOf(buf);
                if(buf == 0) num_item = num_item + " item";
                else num_item = num_item + " items";

                dir.add(new Item(ff.getName(),num_item,date_modify,ff.getAbsolutePath(),"directory_icon"));
            }
            else {
                fls.add(new Item(ff.getName(),ff.length() + " Byte", date_modify, ff.getAbsolutePath(),"file_icon"));
            }
        }
    }catch(Exception e) {
        System.out.println(e.toString());
    }

    Collections.sort(dir);
    Collections.sort(fls);
    dir.addAll(fls);
    if(!f.getName().equalsIgnoreCase("sdcard"))
        dir.add(0,new Item("..","Parent Directory","",f.getParent(),"directory_up"));
    adapter = new FileArrayAdapter(FileChooser.this, R.layout.activity_file_chooser,dir);
    this.setListAdapter(adapter);
}
 
开发者ID:yuvaraj119,项目名称:WifiChatSharing,代码行数:40,代码来源:FileChooser.java

示例11: setCreatedAt

import java.text.DateFormat; //导入方法依赖的package包/类
@Override
protected void setCreatedAt(@Nullable Date createdAt) {
    if (createdAt != null) {
        DateFormat dateFormat = DateFormat.getDateTimeInstance(DateFormat.DEFAULT, DateFormat.SHORT);
        timestampInfo.setText(dateFormat.format(createdAt));
    } else {
        timestampInfo.setText("");
    }
}
 
开发者ID:Vavassor,项目名称:Tusky,代码行数:10,代码来源:StatusDetailedViewHolder.java

示例12: testDoParseDate_Exception_WrongFormat

import java.text.DateFormat; //导入方法依赖的package包/类
public void testDoParseDate_Exception_WrongFormat() {
    DateFormat df = DateFormat.getDateTimeInstance();
    try {
        BaseLocalizer.doParseDate("8 30, 1988 11:25:59 AM", df);
        fail("This should not happen!");
    }
    catch (ParseException expected) {}
}
 
开发者ID:salesforce,项目名称:grammaticus,代码行数:9,代码来源:GrammaticalLocalizerTest.java

示例13: MonitorsLabelProvider

import java.text.DateFormat; //导入方法依赖的package包/类
public MonitorsLabelProvider ( final IObservableMap... attributeMaps )
{
    super ();

    for ( int i = 0; i < attributeMaps.length; i++ )
    {
        attributeMaps[i].addMapChangeListener ( this.mapChangeListener );
    }
    this.attributeMaps = attributeMaps;

    this.dateFormat = DateFormat.getDateTimeInstance ( DateFormat.LONG, DateFormat.LONG );
}
 
开发者ID:eclipse,项目名称:neoscada,代码行数:13,代码来源:MonitorsLabelProvider.java

示例14: parse

import java.text.DateFormat; //导入方法依赖的package包/类
public static Date parse(String timestampStr, Locale locale, String timezone)
    throws ParseException {
  DateFormat dateFormat = null;
  if (locale != null) {
    dateFormat = DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT, locale);
  } else {
    dateFormat = DateFormat.getDateTimeInstance(DateFormat.SHORT, DateFormat.SHORT);
  }
  if (timezone != null) {
    dateFormat.setTimeZone(TimeZone.getTimeZone(timezone));
  }
  return dateFormat.parse(timestampStr);
}
 
开发者ID:logistimo,项目名称:logistimo-web-service,代码行数:14,代码来源:LocalDateUtil.java

示例15: advancedTest2

import java.text.DateFormat; //导入方法依赖的package包/类
@Test
public void advancedTest2() throws Exception {
    HtmlAdapter<PageListWithoutAnnotation> htmlAdapter = jspoon.adapter(PageListWithoutAnnotation.class);
    PageListWithoutAnnotation page = htmlAdapter.fromHtml(HTML_CONTENT);

    DateFormat dateFormat = DateFormat.getDateTimeInstance(DateFormat.DEFAULT, DateFormat.DEFAULT, CUSTOM_DEFAULT_LOCALE);

    List<AnnotatedPost> posts = new ArrayList<>();
    posts.add(new AnnotatedPost(dateFormat.parse("Apr 11, 2017 11:20:00 AM"), "Header1", "Content1", "Tag1", "Tag3", "Tag4"));
    posts.add(new AnnotatedPost(dateFormat.parse("Apr 9, 2017 11:10:00 AM"), "Header2", "Content2", "Tag2", "Tag3", "Tag5"));
    posts.add(new AnnotatedPost(dateFormat.parse("Apr 1, 2017 9:37:00 PM"), "Header3", "Content3", "Tag1", "Tag4", "Tag7"));

    assertEquals(page.quote, "Blah, blah.");
    assertEquals(page.posts, posts);
}
 
开发者ID:DroidsOnRoids,项目名称:jspoon,代码行数:16,代码来源:AdvancedTest.java


注:本文中的java.text.DateFormat.getDateTimeInstance方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。