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


Java ObjectOutput.writeByte方法代碼示例

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


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

示例1: writeExternal

import java.io.ObjectOutput; //導入方法依賴的package包/類
public void writeExternal( ObjectOutput out ) throws IOException {
	// VERSION
	out.writeByte( 0 );

	// POSITION
	out.writeInt( _pos );

	// NO_ENTRY_VALUE
	out.writeChar( no_entry_value );

	// ENTRIES
	int len = _data.length;
	out.writeInt( len );
	for( int i = 0; i < len; i++ ) {
		out.writeChar( _data[ i ] );
	}
}
 
開發者ID:funkemunky,項目名稱:HCFCore,代碼行數:18,代碼來源:TCharArrayList.java

示例2: writeExternal

import java.io.ObjectOutput; //導入方法依賴的package包/類
public void writeExternal(ObjectOutput out) throws IOException {
    super.writeExternal(out);
    
    out.writeByte(PERSISTENCE_VERSION_MAJOR);
    out.writeByte(PERSISTENCE_VERSION_MINOR);
    
    out.writeUTF(Utilities.toURI(heapWalker.getHeapDumpFile()).toString());
}
 
開發者ID:apache,項目名稱:incubator-netbeans,代碼行數:9,代碼來源:HeapWalkerUI.java

示例3: writeExternal

import java.io.ObjectOutput; //導入方法依賴的package包/類
/** {@inheritDoc} */
public void writeExternal( ObjectOutput out ) throws IOException {
    // VERSION
	out.writeByte( 0 );

    // SUPER
	super.writeExternal( out );

	// NO_ENTRY_KEY
	out.writeFloat( no_entry_key );

	// NO_ENTRY_VALUE
	out.writeFloat( no_entry_value );
}
 
開發者ID:funkemunky,項目名稱:HCFCore,代碼行數:15,代碼來源:TFloatFloatHash.java

示例4: writeExternal

import java.io.ObjectOutput; //導入方法依賴的package包/類
/** {@inheritDoc} */
public void writeExternal( ObjectOutput out ) throws IOException {
    // VERSION
	out.writeByte( 0 );

    // SUPER
	super.writeExternal( out );

	// NO_ENTRY_KEY
	out.writeFloat( no_entry_key );

	// NO_ENTRY_VALUE
	out.writeShort( no_entry_value );
}
 
開發者ID:funkemunky,項目名稱:HCFCore,代碼行數:15,代碼來源:TFloatShortHash.java

示例5: writeExternal

import java.io.ObjectOutput; //導入方法依賴的package包/類
public void writeExternal( ObjectOutput out ) throws IOException {
    // VERSION
    out.writeByte(0);

    // LIST
    out.writeObject( list );
}
 
開發者ID:funkemunky,項目名稱:HCFCore,代碼行數:8,代碼來源:TByteListDecorator.java

示例6: writeExternal

import java.io.ObjectOutput; //導入方法依賴的package包/類
public void writeExternal( ObjectOutput out ) throws IOException {
	// VERSION
	out.writeByte( 0 );

	// LIST
	out.writeObject( _list );
}
 
開發者ID:funkemunky,項目名稱:HCFCore,代碼行數:8,代碼來源:TDoubleArrayStack.java

示例7: writeExternal

import java.io.ObjectOutput; //導入方法依賴的package包/類
/** {@inheritDoc} */
public void writeExternal( ObjectOutput out ) throws IOException {
    // VERSION
	out.writeByte( 0 );

    // SUPER
	super.writeExternal( out );

	// NO_ENTRY_KEY
	out.writeByte( no_entry_key );

	// NO_ENTRY_VALUE
	out.writeInt( no_entry_value );
}
 
開發者ID:funkemunky,項目名稱:HCFCore,代碼行數:15,代碼來源:TByteIntHash.java

示例8: writeExternal

import java.io.ObjectOutput; //導入方法依賴的package包/類
/** {@inheritDoc} */
public void writeExternal( ObjectOutput out ) throws IOException {
    // VERSION
	out.writeByte( 0 );

    // SUPER
	super.writeExternal( out );

	// NO_ENTRY_KEY
	out.writeFloat( no_entry_key );

	// NO_ENTRY_VALUE
	out.writeDouble( no_entry_value );
}
 
開發者ID:funkemunky,項目名稱:HCFCore,代碼行數:15,代碼來源:TFloatDoubleHash.java

示例9: writeExternal

import java.io.ObjectOutput; //導入方法依賴的package包/類
/** {@inheritDoc} */
public void writeExternal( ObjectOutput out ) throws IOException {
    // VERSION
	out.writeByte( 0 );

    // SUPER
	super.writeExternal( out );

	// NO_ENTRY_KEY
	out.writeLong( no_entry_key );

	// NO_ENTRY_VALUE
	out.writeChar( no_entry_value );
}
 
開發者ID:JianpingZeng,項目名稱:xcc,代碼行數:15,代碼來源:TLongCharHash.java

示例10: writeInternal

import java.io.ObjectOutput; //導入方法依賴的package包/類
private static void writeInternal(byte type, Object object, ObjectOutput out) throws IOException {
    out.writeByte(type);
    switch (type) {
        case CHRONO_TYPE:
            ((AbstractChronology) object).writeExternal(out);
            break;
        case CHRONO_LOCAL_DATE_TIME_TYPE:
            ((ChronoLocalDateTimeImpl<?>) object).writeExternal(out);
            break;
        case CHRONO_ZONE_DATE_TIME_TYPE:
            ((ChronoZonedDateTimeImpl<?>) object).writeExternal(out);
            break;
        case JAPANESE_DATE_TYPE:
            ((JapaneseDate) object).writeExternal(out);
            break;
        case JAPANESE_ERA_TYPE:
            ((JapaneseEra) object).writeExternal(out);
            break;
        case HIJRAH_DATE_TYPE:
            ((HijrahDate) object).writeExternal(out);
            break;
        case MINGUO_DATE_TYPE:
            ((MinguoDate) object).writeExternal(out);
            break;
        case THAIBUDDHIST_DATE_TYPE:
            ((ThaiBuddhistDate) object).writeExternal(out);
            break;
        case CHRONO_PERIOD_TYPE:
            ((ChronoPeriodImpl) object).writeExternal(out);
            break;
        default:
            throw new InvalidClassException("Unknown serialized type");
    }
}
 
開發者ID:SunburstApps,項目名稱:OpenJSharp,代碼行數:35,代碼來源:Ser.java

示例11: writeExternal

import java.io.ObjectOutput; //導入方法依賴的package包/類
/** {@inheritDoc} */
public void writeExternal( ObjectOutput out ) throws IOException {
    // VERSION
	out.writeByte( 0 );

    // SUPER
	super.writeExternal( out );

	// NO_ENTRY_KEY
	out.writeDouble( no_entry_key );

	// NO_ENTRY_VALUE
	out.writeFloat( no_entry_value );
}
 
開發者ID:JianpingZeng,項目名稱:xcc,代碼行數:15,代碼來源:TDoubleFloatHash.java

示例12: writeExternal

import java.io.ObjectOutput; //導入方法依賴的package包/類
/** {@inheritDoc} */
public void writeExternal( ObjectOutput out ) throws IOException {
    // VERSION
	out.writeByte( 0 );

    // SUPER
	super.writeExternal( out );

	// NO_ENTRY_KEY
	out.writeLong( no_entry_key );

	// NO_ENTRY_VALUE
	out.writeInt( no_entry_value );
}
 
開發者ID:JianpingZeng,項目名稱:xcc,代碼行數:15,代碼來源:TLongIntHash.java

示例13: writeExternal

import java.io.ObjectOutput; //導入方法依賴的package包/類
/** {@inheritDoc} */
public void writeExternal( ObjectOutput out ) throws IOException {
    // VERSION
	out.writeByte( 0 );

    // SUPER
	super.writeExternal( out );

	// NO_ENTRY_KEY
	out.writeShort( no_entry_key );

	// NO_ENTRY_VALUE
	out.writeDouble( no_entry_value );
}
 
開發者ID:JianpingZeng,項目名稱:xcc,代碼行數:15,代碼來源:TShortDoubleHash.java

示例14: writeExternal

import java.io.ObjectOutput; //導入方法依賴的package包/類
@Override
public void writeExternal( ObjectOutput out ) throws IOException {

    // VERSION
    out.writeByte( 0 );

    // SUPER
    super.writeExternal( out );

 // STRATEGY
 out.writeObject( strategy );
}
 
開發者ID:funkemunky,項目名稱:HCFCore,代碼行數:13,代碼來源:TCustomObjectHash.java

示例15: writeExternal

import java.io.ObjectOutput; //導入方法依賴的package包/類
/** {@inheritDoc} */
public void writeExternal( ObjectOutput out ) throws IOException {
    // VERSION
	out.writeByte( 0 );

    // SUPER
	super.writeExternal( out );

	// NO_ENTRY_KEY
	out.writeChar( no_entry_key );

	// NO_ENTRY_VALUE
	out.writeFloat( no_entry_value );
}
 
開發者ID:funkemunky,項目名稱:HCFCore,代碼行數:15,代碼來源:TCharFloatHash.java


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