Java Servlet Programing Laungage

Java Servlet Projects

Servlet Project 3

adplus-dvertising
Java Servlet :Playing Video song using servlet
Previous Home Next

This example shows you how to play the video song on the servler by using the JDBC and the servlet. using this example. By you can plan the video song on the server.

<html>
<head>
<title>Video application</title>
</head>
<body>
	<form>
		<a href="video">click here</a>
	</form>
</body>
</html>

Web.xml

<web-app>
<servlet>
<servlet-name>s1</servlet-name>
<servlet-class>Video</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>s1</servlet-name>
<url-pattern>video</url-pattern>
</servlet-mapping>
</web-app>

Video.java

import javax.servlet.*;
import javax.servlet.http.*;
import java.io.*;

public class Video extends HttpServlet
{
	public void doGet(HttpServletRequest req,
	HttpServletResponse res)throws ServletException,IOException
	{
		res.setContentType("text/html");
		PrintWriter out=res.getWriter();
		out.println("<br><embed src='video.mp4'>");
	}
}
Previous Home Next