2018年12月13日
摘要: 1、引用 #include <stdlib.h>//#include <stdio.h>#include<windows.h>#include<stdio.h>#include<shellapi.h>#pragma comment(lib,"user32")#pragma comment(lib," 阅读全文
posted @ 2018-12-13 17:40 SuperSky 阅读(1995) 评论(0) 推荐(0) 编辑
  2018年10月14日
摘要: * window.location.href , self.location, window.location 出现问题不能跳转 Chome 不能本页跳转, IE 有时可以 阅读全文
posted @ 2018-10-14 19:18 SuperSky 阅读(104) 评论(0) 推荐(0) 编辑
  2018年4月29日
摘要: 1.清除多余记录 最近用eclipse打包jar的时候,需要指定一个main函数。需要先运行一下main函数,eclipse的Runnable JAR File Specification 下的Launch configuration下拉列表才会有记录。如果想要删除下拉列表里的历史记录,只需要进入到 阅读全文
posted @ 2018-04-29 15:43 SuperSky 阅读(125) 评论(0) 推荐(0) 编辑
  2018年2月12日
摘要: A: 项目红叉 1. 检验 Java Builder Path 2. 检查 Projects Facets 3. 查看 Targets Runtimes B:项目红感叹号 1. 查看问题栏 Problems 2. 确认无红色Errors 阅读全文
posted @ 2018-02-12 19:51 SuperSky 阅读(104) 评论(0) 推荐(0) 编辑
  2017年5月15日
摘要: Java Web 远程 调试 Tomcat 下载压缩版服务器 环境:Tomcat、Eclipse,做远程调试我们并不需要其他特殊插件 1、配置Tomcat/bin/startup.bat 在前面增加代码:SET CATALINA_OPTS=-server -Xdebug -Xnoagent -Dja 阅读全文
posted @ 2017-05-15 12:36 SuperSky 阅读(242) 评论(0) 推荐(0) 编辑
  2016年12月13日
摘要: <?xml version="1.0" encoding="utf-8"?><configuration> <startup> <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/> </startup> <appSet 阅读全文
posted @ 2016-12-13 14:53 SuperSky 阅读(448) 评论(0) 推荐(0) 编辑
摘要: 1、打开.project文件,并修改文件, 修改如下: 找到:<natures> </natures>代码段,在代码段中加入如下内容并保存: <nature>org.eclipse.wst.common.project.facet.core.nature</nature> <nature>org.e 阅读全文
posted @ 2016-12-13 14:47 SuperSky 阅读(141) 评论(0) 推荐(0) 编辑
  2016年1月17日
摘要: 菜单设计一 // 创建菜单 public boolean onCreateOptionsMenu(Menu menu) { menu.add(0, 0, 0, "关于"); menu.add(0, 1, 1, "退出"); return supe... 阅读全文
posted @ 2016-01-17 15:29 SuperSky 阅读(203) 评论(0) 推荐(0) 编辑
摘要: UI创建按钮及事件Button mEmailSignInButton = (Button) findViewById(R.id.email_sign_in_button);mEmailSignInButton.setOnClickListener(new OnClickListener() { ... 阅读全文
posted @ 2016-01-17 15:17 SuperSky 阅读(688) 评论(0) 推荐(0) 编辑
  2014年4月14日
摘要: show tables; --显示该数据库里的所有表show columns from 表名; --显示表字段use information_schemaselect * from columns where table_name='表名'; --显示表字段 阅读全文
posted @ 2014-04-14 16:30 SuperSky 阅读(765) 评论(0) 推荐(0) 编辑