登录
首页 » java » 研究生论坛web设计

研究生论坛web设计

于 2022-01-31 发布 文件大小:37.85 MB
0 82
下载积分: 2 下载次数: 1

代码说明:

在上完Java课后,课程设计要求做一个论坛!所以就基于研究生课程上的内容,我们设计了预期功能的web页面,其中具体操作过程时间有点久忘了,不过文件很完整是当时我们课程设计最终提交的完整资料!

下载说明:请别用迅雷下载,失败请重下,重下不扣分!

发表评论

0 个回复

  • ssh_eshop_mysql
    说明:  实现简单的网上购物网站,是个很好的学习例子(Implementing a simple online shopping website is a good example of learning)
    2019-05-19 13:41:19下载
    积分:1
  • android open gl 示例代码下载
    [实例简介]Open GL 入门级示例 [实例截图] [核心代码]package com.china.gltry;import javax.microedition.khronos.egl.EGL10;import javax.microedition.khronos.egl.EGL11;import javax.microedition.khronos.egl.EGLConfig;import javax.microedition.khronos.egl.EGLContext;import javax.microedition.khronos.egl.EGLDisplay;import javax.microedition.khronos.egl.EGLSurface;import javax.microedition.khronos.opengles.GL;import android.view.SurfaceHolder;/** * An EGL helper class. */public class EGLHelper{ public EGLHelper() { } /** * Initialize EGL for a given configuration spec. * @param configSpec */ public void start(int[] configSpec){ /* * Get an EGL instance */ mEgl = (EGL10) EGLContext.getEGL(); /* * Get to the default display. */ mEglDisplay = mEgl.eglGetDisplay(EGL10.EGL_DEFAULT_DISPLAY); /* * We can now initialize EGL for that display */ int[] version = new int[2]; mEgl.eglInitialize(mEglDisplay, version); EGLConfig[] configs = new EGLConfig[1]; int[] num_config = new int[1]; mEgl.eglChooseConfig(mEglDisplay, configSpec, configs, 1, num_config); mEglConfig = configs[0]; /* * Create an OpenGL ES context. This must be done only once, an * OpenGL context is a somewhat heavy object. */ mEglContext = mEgl.eglCreateContext(mEglDisplay, mEglConfig, EGL10.EGL_NO_CONTEXT, null); mEglSurface = null; } /* * Create and return an OpenGL surface */ public GL createSurface(SurfaceHolder holder) { /* * The window size has changed, so we need to create a new * surface. */ if (mEglSurface != null) { /* * Unbind and destroy the old EGL surface, if * there is one. */ mEgl.eglMakeCurrent(mEglDisplay, EGL10.EGL_NO_SURFACE, EGL10.EGL_NO_SURFACE, EGL10.EGL_NO_CONTEXT); mEgl.eglDestroySurface(mEglDisplay, mEglSurface); } /* * Create an EGL surface we can render into. */ mEglSurface = mEgl.eglCreateWindowSurface(mEglDisplay, mEglConfig, holder, null); /* * Before we can issue GL commands, we need to make sure * the context is current and bound to a surface. */ mEgl.eglMakeCurrent(mEglDisplay, mEglSurface, mEglSurface, mEglContext); GL gl = mEglContext.getGL(); return gl; } /** * Display the current render surface. * @return false if the context has been lost. */ public boolean swap() { mEgl.eglSwapBuffers(mEglDisplay, mEglSurface); /* * Always check for EGL_CONTEXT_LOST, which means the context * and all associated data were lost (For instance because * the device went to sleep). We need to sleep until we * get a new surface. */ return mEgl.eglGetError() != EGL11.EGL_CONTEXT_LOST; } public void finish() { if (mEglSurface != null) { mEgl.eglMakeCurrent(mEglDisplay, EGL10.EGL_NO_SURFACE, EGL10.EGL_NO_SURFACE, EGL10.EGL_NO_CONTEXT); mEgl.eglDestroySurface(mEglDisplay, mEglSurface); mEglSurface = null; } if (mEglContext != null) { mEgl.eglDestroyContext(mEglDisplay, mEglContext); mEglContext = null; } if (mEglDisplay != null) { mEgl.eglTerminate(mEglDisplay); mEglDisplay = null; } } EGL10 mEgl; EGLDisplay mEglDisplay; EGLSurface mEglSurface; EGLConfig mEglConfig; EGLContext mEglContext;}
    2015-04-06下载
    积分:1
  • 实现简单的ATM功能,例如密码登录,存取钱,修改密码等等。...
    实现简单的ATM功能,例如密码登录,存取钱,修改密码等等。 -failed to translate
    2022-02-05 07:48:55下载
    积分:1
  • ConvertTool
    说明:  GBK,unicode utf-8 编码转换工具(Encode Convert Tool between GBK,unicode utf-8,url)
    2020-06-22 23:40:01下载
    积分:1
  • 一个SSH+ExtJs实现的简单文章管理系统
    该文章管理系统采用SSH框架,页面采用ExtJs,实现了文章的增删改查操作,为图方便没有做登录实现,这个也不太会。 开发工具为myeclipse8.6,下载地址http://downloads.myeclipseide.com/downloads/products/eworkbench/galileo/myeclipse-8.6.0-win32.exe 数据库mysql,脚本在DB目录里。 如果您有好的建议或者有疑问,欢迎与我联系QQ474345424。 doc里有两个文档解决乱码和另外一个问题.
    2022-03-19 18:26:12下载
    积分:1
  • Java的国际象棋游戏,可以试着研究一下这其中的算法。
    Java的国际象棋游戏,可以试着研究一下这其中的算法。-Java chess game, you can try to look at these algorithms.
    2022-07-13 12:43:36下载
    积分:1
  • 校无忧教师评价系统
    校无忧教师评价系统
    2022-09-26 19:50:03下载
    积分:1
  • ee
    it is a very important source of loof study material
    2009-01-04 11:54:26下载
    积分:1
  • XListView-Android-master
    android listview 下拉刷新 软引用 线程池(android listview pull to refresh soft reference thread pool)
    2013-07-07 02:28:59下载
    积分:1
  • Exploring-the-FileSystem-APIs---HTML5-Rocks
    FileSystemn API to acces host file system from within JavaScript applications
    2014-09-01 19:17:04下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载