登录
首页 » Java » finalassignment

finalassignment

于 2015-11-17 发布 文件大小:4849KB
0 209
下载积分: 1 下载次数: 11

代码说明:

  android 移动应用系统设计 1、最后提交两部分内容 a. 对一个功能的实现+实验报告(该项作为平时作业成绩) - 可以选择上课中所演示的任意功能,截图完成实验报告 - 需要提交程序 + 3-5页的实验报告 b. 从以下网址下载一个app源码,或者其它地方的源码,对代码进行详细解析(该项作为期末课程考核成绩) - 推荐下载网址为:http://www.devstore.cn/code/list/pn1-or0.html - 需要提交下载的源码,和对该源码实现的分析报告,不少于8页 2、将所有内容按下面两个目录进行存放,打包以“学号+姓名” 命名,上传到作业ftp - 实验 - 课程综合(android mobile application system design 1, the final submission of two parts a test report achieve+ a function (such as the usual job performance)- You can any function demonstrated in class, theme complete test report- to be submitted program+ Experimental report b 3-5 pages downloaded the following URL an app source code, or elsewhere source, detailed analysis of the code (such as the end of course examination results)- Recommended download site at: http: //www.devstore .cn/code/list/pn1-or0.html- to submit to download the source code, and analysis of the source code to achieve, at least 8 2, all the content stored in the following two directories, packed to " learn No.+ name " name, upload to job ftp- Experiment- Integrated Course)

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

发表评论

0 个回复

  • jiami_Android
    android上实现文本加密解密。基于约瑟夫环出环序列的到一个混沌序列加解密。(android on text encryption and decryption. Josephus ring sequence to a chaotic sequence encryption and decryption. android on text encryption and decryption. Josephus ring sequence to a chaotic sequence encryption and decryption.)
    2012-09-13 21:38:03下载
    积分:1
  • Java DVD管理器 基础示例代码下载
    Java DVD管理器 基础示例代码下载
    2017-04-03下载
    积分:1
  • javaweb系统代码
    现代超市管理涉及到了商品或货物管理中主要的几个方面,即进货、销售、库存。由于我曾经多次在超市做过促销,对于超市管理有所了解并加以留意,本文通过一个小型超市进销存管理系统的例子,介绍了现代企业进销存管理信息化的一般解决方案。目前,无论公司还是企业对于货物都实行了信息化管理,以提高管理水平和工作效率,同时也可以最大限度的减少手工操作带来的错误。于是,进销存管理信息系统便应运而生。在工厂中,产品的进销存涉及产品原料的采购、库存、投入生产、报损,甚至有时涉及到销售,同时,对于产品也有相应的生产、库存、销售和报损等类似环节。在其他非生产性单位,如超市、商店等,则主要涉及到进货、库存、销售和报损4个方面。超市进销存管理系统是目前应用于公司或是企业进销存管理系统中的典型代表。本系统的开发环境为大家所熟悉的
    2023-04-09 19:10:04下载
    积分:1
  • SystemClock
    System Clock Source Code for Andriod.
    2013-12-16 15:59:27下载
    积分:1
  • MAU4-40,-55,-70图谱
    螺旋桨图谱设计,MAU4-40,-55,-70图谱
    2019-06-11下载
    积分:1
  • android camera 例子源码
    android camera 例子源码
    2014-11-10下载
    积分:1
  • 顺丰bsp系统下单接口demo
    资源描述 顺丰bsp系统下单接口demo 顺丰企业服务平台接入技术规范_V3.6(快递接口) 下单省市匹配表 报文例子 wsdl例子 统统都有哦
    2022-04-01 19:02:33下载
    积分:1
  • android 系统机自动启动应用程序的源码
    应用背景andorid 系统下,开机时如果需要自动启动你的应用,可以使用上面的代码。关键技术可实现安卓开机自启动功能,注意手机必须设为允许自启动
    2022-03-01 12:30:50下载
    积分:1
  • 量子密钥分配
    摘要
    2022-10-17 04:35:03下载
    积分:1
  • 基于STM32的温感GPS终端设计
    【实例简介】 野火的指南者,GPS是ATGM332D,温度传感器是DHT11。实现定位温度的采集、LCD显示及WIFI传输 /** 温感GPS终端设计.rar   ******************************************************************************   * @file    main.c   * @author  fire   * @version V1.0   * @date    2013-xx-xx   * @brief   对GPS模块传输的数据进行解码,获取定位信息。   ******************************************************************************   * @attention   *   * 实验平台:秉火  STM32 F103-指南者 开发板    * 论坛    :http://www.firebbs.cn   * 淘宝    :https://fire-stm32.taobao.com   *   ******************************************************************************   */ #include "stm32f10x.h" #include "./usart/bsp_usart.h" #include "./gps/gps_config.h" #include "./lcd/bsp_ili9341_lcd.h" #include "./systick/bsp_SysTick.h" #include "./dht11/bsp_dht11.h" #include "./i2c/bsp_i2c_ee.h" #include "./flash/bsp_spi_flash.h" #include "usart1.h" #include "test.h" #include "bsp_esp8266.h" #include #include extern void nmea_decode_test(void); extern void ESP8266_StaTcpClient_UnvarnishTest2(void); int main(void) { ILI9341_Init (); SysTick_Init(); DHT11_Init (); ILI9341_GramScan ( 6 ); USART_Config(); USARTx_Config(); ESP8266_Init ();  GPS_Config();                                                                                                                  while(1) { ESP8266_StaTcpClient_UnvarnishTest2(); nmea_decode_test(); } }
    2021-10-16 00:31:16下载
    积分:1
  • 696516资源总数
  • 106914会员总数
  • 0今日下载