标签:共享
CreateFile参数设置为FILE_SHARE_READ,其他程序不能读?
#include <windows.h> #include <stdio.h> int main() { DWORD dwBytes; char data[] = "aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"; HANDLE hFile = CreateFile("te……
10-24 立刻查看
JSP中的“转发”,前后两个页面共享同一个request对象么?
JSP转发共享request对象 JSP中的“转发”,前后两个页面共享同一个request对象么? 5分 String tmpltPage=”/com.attilax/dsm/tmplt_edit.jsp“; try { request.getRequestDispatcher(tmpltPage).forward……
04-10 立刻查看