1. 首页 > 科技

javaWeb项目中如何实现即时通讯!还要求实现消息定时发送功能! java长连接消息实时推送

javaWeb项目中如何实现即时通讯!还要求实现消息定时发送功能!java长连接消息实时推送

用java web 实现这样一个功能,定时发送短信,发送的时间和内容都存在数据库中,怎么实现

先把数据存入数据库表中,数据设置一个状态 0未发送

然后定义一个定时任务,读取数据通过短信接口发送数据,并更新数据库状态为1 已发送

这样就ok了

如何在eclipse环境下用JAVA实现手机定时发送短信功能

你把你的代码发给我,我可以帮你看看改成定时发送(如果工作量不是很大的话),我的邮箱: ps at o81o

怎样用java web和websocket实现网页即时通讯

下面是一个java的多线程的WebServer的例子:

//import java.io.*;

import java.*;

//import java.util.*;

public final class WebServer {

public static void main(String argv[]) throws Exception

{

int port = 80;

// Establish the listen socket.

ServerSocket WebSocket = new ServerSocket(port);

while (true) {

// Listen for a TCP connection request.

Socket connectionSocket = WebSocket.accept();

//Construct object to process HTTP request message

HttpRequest request = new HttpRequest(connectionSocket);

Thread thread = new Thread(request); //Create new thread to process

thread.start(); //Start the thread

}

}

}

import java.io.*;

import java.*;

import java.util.*;

public final class HttpRequest implements Runnable {

final static String CRLF = "\r\n";//For convenience

Socket socket;

// Constructor

public HttpRequest(Socket socket) throws Exception

{

this.socket = socket;

}

// Implement the run() method of the Runnable interface.

public void run()

{

try {

processRequest();

} catch (Exception e) {

System.out.println(e);

}

}

private void processRequest() throws Exception

{

InputStream is = socket.getInputStream(); //Starts the input from client machine

DataOutputStream os = new DataOutputStream(

socket.getOutputStream());

// Set up input stream filters.

BufferedReader br = new BufferedReader(

new InputStreamReader(is));

String requestLine = br.readLine();

System.out.println(); //Echoes request line out to screen

System.out.println(requestLine);

//The following obtains the IP address of the incoming connection.

InetAddress incomingAddress = socket.getInetAddress();

String ipString= incomingAddress.getHostAddress();

System.out.println("The incoming address is: " + ipString);

//String Tokenizer is used to extract file name from this class.

StringTokenizer tokens = new StringTokenizer(requestLine);

tokens.nextToken(); // skip over the method, which should be “GET”

String fileName = tokens.nextToken();

// Prepend a “.” so that file request is within the current directory.

fileName = "." + fileName;

String headerLine = null;

while ((headerLine = br.readLine()).length() != 0) { //While the header still has text, print it

System.out.println(headerLine);

}

// Open the requested file.

FileInputStream fis = null;

boolean fileExists = true;

try {

fis = new FileInputStream(fileName);

} catch (FileNotFoundException e) {

fileExists = false;

}

//Construct the response message

String statusLine = null; //Set initial values to null

String contentTypeLine = null;

String entityBody = null;

if (fileExists) {

statusLine = "HTTP/1.1 200 OK: ";

contentTypeLine = "Content-Type: " +

contentType(fileName) + CRLF;

} else {

statusLine = "HTTP/1.1 404 Not Found: ";

contentTypeLine = "Content-Type: text/html" + CRLF;

entityBody = "" + "Not Found" + "Not Found";

}

//End of response message construction

// Send the status line.

os.writeBytes(statusLine);

// Send the content type line.

os.writeBytes(contentTypeLine);

// Send a blank line to indicate the end of the header lines.

os.writeBytes(CRLF);

// Send the entity body.

if (fileExists) {

sendBytes(fis, os);

fis.close();

} else {

os.writeBytes(entityBody);

}

os.close(); //Close streams and socket.

br.close();

socket.close();

}

//Need this one for sendBytes function called in processRequest

private static void sendBytes(FileInputStream fis, OutputStream os)

throws Exception

{

// Construct a 1K buffer to hold bytes on their way to the socket.

byte[] buffer = new byte[1024];

int bytes = 0;

// Copy requested file into the socket’s output stream.

while((bytes = fis.read(buffer)) != -1 ) {

os.write(buffer, 0, bytes);

}

}

private static String contentType(String fileName)

{

if(fileName.endsWith(".htm") || fileName.endsWith(".html"))

return "text/html";

if(fileName.endsWith(".jpg"))

return "text/jpg";

if(fileName.endsWith(".gif"))

return "text/gif";

return "application/octet-stream";

}

}

java中怎么实现定时功能

这个是我在网上找的不知道是不是你要的:

java定时任务Timer 关于定时任务,似乎跟时间操作的联系并不是很大,但是前面既然提到了定时任务,索性在这里一起解决了。设置定时任务很简单,用Timer类就搞定了。一、延时执行首先,我们定义一个类,给它取个名字叫TimeTask,我们的定时任务,就在这个类的main函数里执行。代码如下:

package test;

import java.util.Timer;

public class TimeTaskTest {

public static void main(String[] args){ Timer timer = new Timer();

timer.schedule(new Task(), 60 * 1000);

}

}

解释一下上面的代码。上面的代码实现了这样一个功能,当TimeTask程序启动以后,过一分钟后执行某项任务。很简单吧:先new一个Timer对象,然后调用它的schedule方法,这个方法有四个重载的方法,这里我们用其中一个,

public void schedule(TimerTask task,long delay)

首先,第一个参数第一个参数就是我们要执行的任务。这是一个TimerTask对象,确切点说是一个实现TimerTask的类的对象,因为TimerTask是个抽象类。上面的代码里 面,Task就是我们自己定义的实现了TimerTask的类,因为是在同一个包里面,所以没有显性的import进来。Task类的代码如下

package test;

import java.util.TimerTask;

public class Task extends TimerTask { public void run()

{

System.out.println("定时任务执行");

}

}

我们的Task必须实现TimerTask的方法run,要执行的任务就在这个run方法里面,这里,我们只让它往控制台打一行字。第二个参数第二个参数是一个long型的值。这是延迟的时间,就是从程序开始以后,再过多少时间来执行定时任务。这个long型的值是毫秒数,所以前面我们的程序里面,过一分钟后执行用的参数值就是 60 * 1000。二、循环执行设置定时任务的时候,往往我们需要重复的执行这样任务,每隔一段时间执行一次,而上面的方法是只执行一次的,这样就用到了schedule方法的是另一个重载函数public void schedule(TimerTask task,long delay,long period)

前两个参数就不用说什么了,最后一个参数就是间隔的时间,又是个long型的毫秒数(看来java里涉及到时间的,跟这个long是脱不了干系了),比如我们希望上面的任务从第一次执行后,每个一分钟执行一次,第三个参数值赋60 * 1000就ok了。三、指定执行时间既然号称是定时任务,我们肯定希望由我们来指定任务指定的时间,显然上面的方法就不中用了,因为我们不知道程序什么时间开始运行,就没办法确定需要延时多少。没关系,schedule四个重载的方法还没用完呢。用下面这个就OK了:

public void schedule(TimerTask task,Date time)

比如,我们希望定时任务2006年7月2日0时0分执行,只要给第二个参数传一个时间设置为2006年7月2日0时0分的Date对象就可以了。有一种情况是,可能我们的程序启动的时候,已经是2006年7月3日了,这样的话,程序一启动,定时任务就开始执行了。schedule最后一个重载的方法是public void schedule(TimerTask task,Date firstTime,long period)

没必要说什么了吧:)四、j2ee中的定时任务在实际的项目中,往往定时任务需要对web工程中的资源进行操作,这样一来,用上面的单个程序的方式可能就有点力不从心了,因为很多web工程的资源它操作不到。解决的办法是,使用Servlet,把执行定时任务的那些代码放到Servlet的init()函数里就可以了,这个easy,就没有必要再写示例代码了吧