當前位置: 首頁>>代碼示例>>Java>>正文


Java ConsoleHandler.flush方法代碼示例

本文整理匯總了Java中java.util.logging.ConsoleHandler.flush方法的典型用法代碼示例。如果您正苦於以下問題:Java ConsoleHandler.flush方法的具體用法?Java ConsoleHandler.flush怎麽用?Java ConsoleHandler.flush使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在java.util.logging.ConsoleHandler的用法示例。


在下文中一共展示了ConsoleHandler.flush方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: testClose_SufficientPrivilege_Exception

import java.util.logging.ConsoleHandler; //導入方法依賴的package包/類
public void testClose_SufficientPrivilege_Exception() throws Exception {
	Properties p = new Properties();
	p.put("java.util.logging.ConsoleHandler.formatter", className
			+ "$MockFormatter");
	LogManager.getLogManager().readConfiguration(
			EnvironmentHelper.PropertiesToInputStream(p));
	ConsoleHandler h = new ConsoleHandler();

	h.publish(new LogRecord(Level.SEVERE,
			"testClose_SufficientPrivilege_Exception msg"));
	h.flush();
	h.close();
}
 
開發者ID:Sellegit,項目名稱:j2objc,代碼行數:14,代碼來源:ConsoleHandlerTest.java

示例2: testPublish_NoFilter

import java.util.logging.ConsoleHandler; //導入方法依賴的package包/類
public void testPublish_NoFilter() throws Exception {
	Properties p = new Properties();
	p.put("java.util.logging.ConsoleHandler.formatter", className
			+ "$MockFormatter");
	LogManager.getLogManager().readConfiguration(
			EnvironmentHelper.PropertiesToInputStream(p));
	ConsoleHandler h = new ConsoleHandler();

	LogRecord r = new LogRecord(Level.INFO, "testPublish_NoFilter");
	h.setLevel(Level.INFO);
	h.publish(r);
	h.flush();
	assertEquals("MockFormatter_Head" + "testPublish_NoFilter",
			this.errSubstituteStream.toString());

	h.setLevel(Level.WARNING);
	h.publish(r);
	h.flush();
	assertEquals("MockFormatter_Head" + "testPublish_NoFilter",
			this.errSubstituteStream.toString());

	h.setLevel(Level.CONFIG);
	h.publish(r);
	h.flush();
	assertEquals("MockFormatter_Head" + "testPublish_NoFilter"
			+ "testPublish_NoFilter", this.errSubstituteStream.toString());

	r.setLevel(Level.OFF);
	h.setLevel(Level.OFF);
	h.publish(r);
	h.flush();
	assertEquals("MockFormatter_Head" + "testPublish_NoFilter"
			+ "testPublish_NoFilter", this.errSubstituteStream.toString());
}
 
開發者ID:Sellegit,項目名稱:j2objc,代碼行數:35,代碼來源:ConsoleHandlerTest.java

示例3: testPublish_EmptyMsg

import java.util.logging.ConsoleHandler; //導入方法依賴的package包/類
public void testPublish_EmptyMsg() throws Exception {
	Properties p = new Properties();
	p.put("java.util.logging.ConsoleHandler.formatter", className
			+ "$MockFormatter");
	LogManager.getLogManager().readConfiguration(
			EnvironmentHelper.PropertiesToInputStream(p));
	ConsoleHandler h = new ConsoleHandler();
	LogRecord r = new LogRecord(Level.INFO, "");
	h.publish(r);
	h.flush();
	assertEquals("MockFormatter_Head", this.errSubstituteStream.toString());
}
 
開發者ID:Sellegit,項目名稱:j2objc,代碼行數:13,代碼來源:ConsoleHandlerTest.java

示例4: testPublish_NullMsg

import java.util.logging.ConsoleHandler; //導入方法依賴的package包/類
public void testPublish_NullMsg() throws Exception {
	Properties p = new Properties();
	p.put("java.util.logging.ConsoleHandler.formatter", className
			+ "$MockFormatter");
	LogManager.getLogManager().readConfiguration(
			EnvironmentHelper.PropertiesToInputStream(p));
	ConsoleHandler h = new ConsoleHandler();
	LogRecord r = new LogRecord(Level.INFO, null);
	h.publish(r);
	h.flush();
	// assertEquals("MockFormatter_Head",
	// this.errSubstituteStream.toString());
}
 
開發者ID:Sellegit,項目名稱:j2objc,代碼行數:14,代碼來源:ConsoleHandlerTest.java

示例5: testPublish_AfterClose

import java.util.logging.ConsoleHandler; //導入方法依賴的package包/類
public void testPublish_AfterClose() throws Exception {
	PrintStream backup = System.err;
	try {
		ByteArrayOutputStream bos = new ByteArrayOutputStream();
		System.setErr(new PrintStream(bos));
		Properties p = new Properties();
		p.put("java.util.logging.ConsoleHandler.level", "FINE");
		p.put("java.util.logging.ConsoleHandler.formatter", className
				+ "$MockFormatter");
		LogManager.getLogManager().readConfiguration(
				EnvironmentHelper.PropertiesToInputStream(p));
		ConsoleHandler h = new ConsoleHandler();
		assertSame(h.getLevel(), Level.FINE);
		LogRecord r1 = new LogRecord(Level.INFO, "testPublish_Record1");
		LogRecord r2 = new LogRecord(Level.INFO, "testPublish_Record2");
		assertTrue(h.isLoggable(r1));
		h.publish(r1);
		assertTrue(bos.toString().indexOf("testPublish_Record1") >= 0);
		h.close();
		// assertFalse(h.isLoggable(r));
		assertTrue(h.isLoggable(r2));
		h.publish(r2);
		assertTrue(bos.toString().indexOf("testPublish_Record2") >= 0);
		h.flush();
		// assertEquals("MockFormatter_Head",
		// this.errSubstituteStream.toString());
	} catch (IOException e) {
		e.printStackTrace();
	} finally {
		System.setErr(backup);
	}
}
 
開發者ID:Sellegit,項目名稱:j2objc,代碼行數:33,代碼來源:ConsoleHandlerTest.java


注:本文中的java.util.logging.ConsoleHandler.flush方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。