Categories:
Audio (13)
Biotech (29)
Bytecode (36)
Database (77)
Framework (7)
Game (7)
General (507)
Graphics (53)
I/O (35)
IDE (2)
JAR Tools (101)
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 (309)
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/RIFFWriter.java
/* * Copyright (c) 2007, 2013, 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.File; import java.io.FileNotFoundException; import java.io.IOException; import java.io.OutputStream; import java.io.RandomAccessFile; /** * Resource Interchange File Format (RIFF) stream encoder. * * @author Karl Helgason */ public final class RIFFWriter extends OutputStream { private interface RandomAccessWriter { void seek(long chunksizepointer) throws IOException; long getPointer() throws IOException; void close() throws IOException; void write(int b) throws IOException; void write(byte[] b, int off, int len) throws IOException; void write(byte[] bytes) throws IOException; long length() throws IOException; void setLength(long i) throws IOException; } private static class RandomAccessFileWriter implements RandomAccessWriter { RandomAccessFile raf; RandomAccessFileWriter(File file) throws FileNotFoundException { this.raf = new RandomAccessFile(file, "rw"); } RandomAccessFileWriter(String name) throws FileNotFoundException { this.raf = new RandomAccessFile(name, "rw"); } @Override public void seek(long chunksizepointer) throws IOException { raf.seek(chunksizepointer); } @Override public long getPointer() throws IOException { return raf.getFilePointer(); } @Override public void close() throws IOException { raf.close(); } @Override public void write(int b) throws IOException { raf.write(b); } @Override public void write(byte[] b, int off, int len) throws IOException { raf.write(b, off, len); } @Override public void write(byte[] bytes) throws IOException { raf.write(bytes); } @Override public long length() throws IOException { return raf.length(); } @Override public void setLength(long i) throws IOException { raf.setLength(i); } } private static class RandomAccessByteWriter implements RandomAccessWriter { byte[] buff = new byte[32]; int length = 0; int pos = 0; byte[] s; final OutputStream stream; RandomAccessByteWriter(OutputStream stream) { this.stream = stream; } @Override public void seek(long chunksizepointer) throws IOException { pos = (int) chunksizepointer; } @Override public long getPointer() throws IOException { return pos; } @Override public void close() throws IOException { stream.write(buff, 0, length); stream.close(); } @Override public void write(int b) throws IOException { if (s == null) s = new byte[1]; s[0] = (byte)b; write(s, 0, 1); } @Override public void write(byte[] b, int off, int len) throws IOException { int newsize = pos + len; if (newsize > length) setLength(newsize); int end = off + len; for (int i = off; i < end; i++) { buff[pos++] = b[i]; } } @Override public void write(byte[] bytes) throws IOException { write(bytes, 0, bytes.length); } @Override public long length() throws IOException { return length; } @Override public void setLength(long i) throws IOException { length = (int) i; if (length > buff.length) { int newlen = Math.max(buff.length << 1, length); byte[] newbuff = new byte[newlen]; System.arraycopy(buff, 0, newbuff, 0, buff.length); buff = newbuff; } } } private int chunktype = 0; // 0=RIFF, 1=LIST; 2=CHUNK private RandomAccessWriter raf; private final long chunksizepointer; private final long startpointer; private RIFFWriter childchunk = null; private boolean open = true; private boolean writeoverride = false; public RIFFWriter(String name, String format) throws IOException { this(new RandomAccessFileWriter(name), format, 0); } public RIFFWriter(File file, String format) throws IOException { this(new RandomAccessFileWriter(file), format, 0); } public RIFFWriter(OutputStream stream, String format) throws IOException { this(new RandomAccessByteWriter(stream), format, 0); } private RIFFWriter(RandomAccessWriter raf, String format, int chunktype) throws IOException { if (chunktype == 0) if (raf.length() != 0) raf.setLength(0); this.raf = raf; if (raf.getPointer() % 2 != 0) raf.write(0); if (chunktype == 0) raf.write("RIFF".getBytes("ascii")); else if (chunktype == 1) raf.write("LIST".getBytes("ascii")); else raf.write((format + " ").substring(0, 4).getBytes("ascii")); chunksizepointer = raf.getPointer(); this.chunktype = 2; writeUnsignedInt(0); this.chunktype = chunktype; startpointer = raf.getPointer(); if (chunktype != 2) raf.write((format + " ").substring(0, 4).getBytes("ascii")); } public void seek(long pos) throws IOException { raf.seek(pos); } public long getFilePointer() throws IOException { return raf.getPointer(); } public void setWriteOverride(boolean writeoverride) { this.writeoverride = writeoverride; } public boolean getWriteOverride() { return writeoverride; } @Override public void close() throws IOException { if (!open) return; if (childchunk != null) { childchunk.close(); childchunk = null; } int bakchunktype = chunktype; long fpointer = raf.getPointer(); raf.seek(chunksizepointer); chunktype = 2; writeUnsignedInt(fpointer - startpointer); if (bakchunktype == 0) raf.close(); else raf.seek(fpointer); open = false; raf = null; } @Override public void write(int b) throws IOException { if (!writeoverride) { if (chunktype != 2) { throw new IllegalArgumentException( "Only chunks can write bytes!"); } if (childchunk != null) { childchunk.close(); childchunk = null; } } raf.write(b); } @Override public void write(byte b[], int off, int len) throws IOException { if (!writeoverride) { if (chunktype != 2) { throw new IllegalArgumentException( "Only chunks can write bytes!"); } if (childchunk != null) { childchunk.close(); childchunk = null; } } raf.write(b, off, len); } public RIFFWriter writeList(String format) throws IOException { if (chunktype == 2) { throw new IllegalArgumentException( "Only LIST and RIFF can write lists!"); } if (childchunk != null) { childchunk.close(); childchunk = null; } childchunk = new RIFFWriter(this.raf, format, 1); return childchunk; } public RIFFWriter writeChunk(String format) throws IOException { if (chunktype == 2) { throw new IllegalArgumentException( "Only LIST and RIFF can write chunks!"); } if (childchunk != null) { childchunk.close(); childchunk = null; } childchunk = new RIFFWriter(this.raf, format, 2); return childchunk; } // Write ASCII chars to stream public void writeString(String string) throws IOException { byte[] buff = string.getBytes(); write(buff); } // Write ASCII chars to stream public void writeString(String string, int len) throws IOException { byte[] buff = string.getBytes(); if (buff.length > len) write(buff, 0, len); else { write(buff); for (int i = buff.length; i < len; i++) write(0); } } // Write 8 bit signed integer to stream public void writeByte(int b) throws IOException { write(b); } // Write 16 bit signed integer to stream public void writeShort(short b) throws IOException { write((b >>> 0) & 0xFF); write((b >>> 8) & 0xFF); } // Write 32 bit signed integer to stream public void writeInt(int b) throws IOException { write((b >>> 0) & 0xFF); write((b >>> 8) & 0xFF); write((b >>> 16) & 0xFF); write((b >>> 24) & 0xFF); } // Write 64 bit signed integer to stream public void writeLong(long b) throws IOException { write((int) (b >>> 0) & 0xFF); write((int) (b >>> 8) & 0xFF); write((int) (b >>> 16) & 0xFF); write((int) (b >>> 24) & 0xFF); write((int) (b >>> 32) & 0xFF); write((int) (b >>> 40) & 0xFF); write((int) (b >>> 48) & 0xFF); write((int) (b >>> 56) & 0xFF); } // Write 8 bit unsigned integer to stream public void writeUnsignedByte(int b) throws IOException { writeByte((byte) b); } // Write 16 bit unsigned integer to stream public void writeUnsignedShort(int b) throws IOException { writeShort((short) b); } // Write 32 bit unsigned integer to stream public void writeUnsignedInt(long b) throws IOException { writeInt((int) b); } }
⏎ com/sun/media/sound/RIFFWriter.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, 163440👍, 5💬
Popular Posts:
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...
What Is poi-scratchpad-3.5.jar? poi-scratchpad-3.5.jar is one of the JAR files for Apache POI 3.5, w...
JAX-WS is an API for building web services and clients. It is the next generation Web Services API r...
Apache Neethi provides general framework for the programmers to use WS Policy. It is compliant with ...