Source Code Cross Referenced for ServletInputStream.java in  » EJB-Server-GlassFish » servlet » javax » servlet » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » EJB Server GlassFish » servlet » javax.servlet 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:
002:        /*
003:         * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
004:         * 
005:         * Copyright 1997-2007 Sun Microsystems, Inc. All rights reserved.
006:         * 
007:         * Portions Copyright Apache Software Foundation.
008:         * 
009:         * The contents of this file are subject to the terms of either the GNU
010:         * General Public License Version 2 only ("GPL") or the Common Development
011:         * and Distribution License("CDDL") (collectively, the "License").  You
012:         * may not use this file except in compliance with the License. You can obtain
013:         * a copy of the License at https://glassfish.dev.java.net/public/CDDL+GPL.html
014:         * or glassfish/bootstrap/legal/LICENSE.txt.  See the License for the specific
015:         * language governing permissions and limitations under the License.
016:         * 
017:         * When distributing the software, include this License Header Notice in each
018:         * file and include the License file at glassfish/bootstrap/legal/LICENSE.txt.
019:         * Sun designates this particular file as subject to the "Classpath" exception
020:         * as provided by Sun in the GPL Version 2 section of the License file that
021:         * accompanied this code.  If applicable, add the following below the License
022:         * Header, with the fields enclosed by brackets [] replaced by your own
023:         * identifying information: "Portions Copyrighted [year]
024:         * [name of copyright owner]"
025:         * 
026:         * Contributor(s):
027:         * 
028:         * If you wish your version of this file to be governed by only the CDDL or
029:         * only the GPL Version 2, indicate your decision by adding "[Contributor]
030:         * elects to include this software in this distribution under the [CDDL or GPL
031:         * Version 2] license."  If you don't indicate a single choice of license, a
032:         * recipient has the option to distribute your version of this file under
033:         * either the CDDL, the GPL Version 2 or to extend the choice of license to
034:         * its licensees as provided above.  However, if you add GPL Version 2 code
035:         * and therefore, elected the GPL Version 2 license, then the option applies
036:         * only if the new code is made subject to such option by the copyright
037:         * holder.
038:         */
039:
040:        package javax.servlet;
041:
042:        import java.io.InputStream;
043:        import java.io.IOException;
044:
045:        /**
046:         * 
047:         * Provides an input stream for reading binary data from a client
048:         * request, including an efficient <code>readLine</code> method
049:         * for reading data one line at a time. With some protocols, such
050:         * as HTTP POST and PUT, a <code>ServletInputStream</code>
051:         * object can be used to read data sent from the client.
052:         *
053:         * <p>A <code>ServletInputStream</code> object is normally retrieved via
054:         * the {@link ServletRequest#getInputStream} method.
055:         *
056:         *
057:         * <p>This is an abstract class that a servlet container implements.
058:         * Subclasses of this class
059:         * must implement the <code>java.io.InputStream.read()</code> method.
060:         *
061:         *
062:         * @author 	Various
063:         *
064:         * @see		ServletRequest 
065:         *
066:         */
067:
068:        public abstract class ServletInputStream extends InputStream {
069:
070:            /**
071:             * Does nothing, because this is an abstract class.
072:             *
073:             */
074:
075:            protected ServletInputStream() {
076:            }
077:
078:            /**
079:             *
080:             * Reads the input stream, one line at a time. Starting at an
081:             * offset, reads bytes into an array, until it reads a certain number
082:             * of bytes or reaches a newline character, which it reads into the
083:             * array as well.
084:             *
085:             * <p>This method returns -1 if it reaches the end of the input
086:             * stream before reading the maximum number of bytes.
087:             *
088:             *
089:             *
090:             * @param b 		an array of bytes into which data is read
091:             *
092:             * @param off 		an integer specifying the character at which
093:             *				this method begins reading
094:             *
095:             * @param len		an integer specifying the maximum number of 
096:             *				bytes to read
097:             *
098:             * @return			an integer specifying the actual number of bytes 
099:             *				read, or -1 if the end of the stream is reached
100:             *
101:             * @exception IOException	if an input or output exception has occurred
102:             *
103:             */
104:
105:            public int readLine(byte[] b, int off, int len) throws IOException {
106:
107:                if (len <= 0) {
108:                    return 0;
109:                }
110:                int count = 0, c;
111:
112:                while ((c = read()) != -1) {
113:                    b[off++] = (byte) c;
114:                    count++;
115:                    if (c == '\n' || count == len) {
116:                        break;
117:                    }
118:                }
119:                return count > 0 ? count : -1;
120:            }
121:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.