Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (102)
JavaBeans (21)
JDBC (121)
JDK (426)
JSP (20)
Logging (108)
Mail (58)
Messaging (8)
Network (84)
PDF (97)
Report (7)
Scripting (84)
Security (32)
Server (121)
Servlet (26)
SOAP (24)
Testing (54)
Web (15)
XML (322)
Collections:
Other Resources:
JDK 11 java.desktop.jmod - Desktop Module
JDK 11 java.desktop.jmod is the JMOD file for JDK 11 Desktop module.
JDK 11 Desktop module compiled class files are stored in \fyicenter\jdk-11.0.1\jmods\java.desktop.jmod.
JDK 11 Desktop module compiled class files are also linked and stored in the \fyicenter\jdk-11.0.1\lib\modules JImage file.
JDK 11 Desktop module source code files are stored in \fyicenter\jdk-11.0.1\lib\src.zip\java.desktop.
You can click and view the content of each source code file in the list below.
✍: FYIcenter
⏎ com/sun/media/sound/SunFileWriter.java
/*
* Copyright (c) 1999, 2017, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package com.sun.media.sound;
import java.io.DataInputStream;
import java.io.IOException;
import java.io.InputStream;
import javax.sound.sampled.AudioFileFormat;
import javax.sound.sampled.spi.AudioFileWriter;
/**
* Abstract File Writer class.
*
* @author Jan Borgersen
*/
abstract class SunFileWriter extends AudioFileWriter {
// buffer size for write
protected static final int bufferSize = 16384;
// buffer size for temporary input streams
protected static final int bisBufferSize = 4096;
final AudioFileFormat.Type types[];
/**
* Constructs a new SunParser object.
*/
SunFileWriter(AudioFileFormat.Type types[]) {
this.types = types;
}
// METHODS TO IMPLEMENT AudioFileWriter
@Override
public final AudioFileFormat.Type[] getAudioFileTypes(){
AudioFileFormat.Type[] localArray = new AudioFileFormat.Type[types.length];
System.arraycopy(types, 0, localArray, 0, types.length);
return localArray;
}
// HELPER METHODS
/**
* rllong
* Protected helper method to read 64 bits and changing the order of
* each bytes.
* @return 32 bits swapped value.
* @exception IOException
*/
final int rllong(DataInputStream dis) throws IOException {
int b1, b2, b3, b4 ;
int i = 0;
i = dis.readInt();
b1 = ( i & 0xFF ) << 24 ;
b2 = ( i & 0xFF00 ) << 8;
b3 = ( i & 0xFF0000 ) >> 8;
b4 = ( i & 0xFF000000 ) >>> 24;
i = ( b1 | b2 | b3 | b4 );
return i;
}
/**
* big2little
* Protected helper method to swap the order of bytes in a 32 bit int
* @return 32 bits swapped value
*/
final int big2little(int i) {
int b1, b2, b3, b4 ;
b1 = ( i & 0xFF ) << 24 ;
b2 = ( i & 0xFF00 ) << 8;
b3 = ( i & 0xFF0000 ) >> 8;
b4 = ( i & 0xFF000000 ) >>> 24;
i = ( b1 | b2 | b3 | b4 );
return i;
}
/**
* rlshort
* Protected helper method to read 16 bits value. Swap high with low byte.
* @return the swapped value.
* @exception IOException
*/
final short rlshort(DataInputStream dis) throws IOException {
short s=0;
short high, low;
s = dis.readShort();
high = (short)(( s & 0xFF ) << 8) ;
low = (short)(( s & 0xFF00 ) >>> 8);
s = (short)( high | low );
return s;
}
/**
* big2little
* Protected helper method to swap the order of bytes in a 16 bit short
* @return 16 bits swapped value
*/
final short big2littleShort(short i) {
short high, low;
high = (short)(( i & 0xFF ) << 8) ;
low = (short)(( i & 0xFF00 ) >>> 8);
i = (short)( high | low );
return i;
}
/**
* InputStream wrapper class which prevent source stream from being closed.
* The class is usefull for use with SequenceInputStream to prevent
* closing of the source input streams.
*/
final class NoCloseInputStream extends InputStream {
private final InputStream in;
NoCloseInputStream(InputStream in) {
this.in = in;
}
@Override
public int read() throws IOException {
return in.read();
}
@Override
public int read(byte b[]) throws IOException {
return in.read(b);
}
@Override
public int read(byte b[], int off, int len) throws IOException {
return in.read(b, off, len);
}
@Override
public long skip(long n) throws IOException {
return in.skip(n);
}
@Override
public int available() throws IOException {
return in.available();
}
@Override
public void close() throws IOException {
// don't propagate the call
}
@Override
public void mark(int readlimit) {
in.mark(readlimit);
}
@Override
public void reset() throws IOException {
in.reset();
}
@Override
public boolean markSupported() {
return in.markSupported();
}
}
}
⏎ com/sun/media/sound/SunFileWriter.java
Or download all of them as a single archive file:
File name: java.desktop-11.0.1-src.zip File size: 7974380 bytes Release date: 2018-11-04 Download
⇒ JDK 11 java.instrument.jmod - Instrument Module
2022-08-06, ≈678🔥, 5💬
Popular Posts:
If you are a Java developer, it is very often that you need to use some 3rd party libraries to perfo...
JDK 17 jdk.javadoc.jmod is the JMOD file for JDK 17 Java Document tool, which can be invoked by the ...
What is the sax\Writer.java provided in the Apache Xerces package? I have Apache Xerces 2.11.0 insta...
What Is jsse.jar (JDK 6) Java Secure Socket Extension? jsse.jar, Java Secure Socket Extension, is Ja...
Apache BCEL Source Code Files are inside the Apache BCEL source package file like bcel-6.6.1-src.zip...