摘要:
// 相对于给定ID控件android:layout_above 将该控件的底部置于给定ID的控件之上;android:layout_below 将该控件的底部置于给定ID的控件之下;android:layout_toLeftOf 将该控件的右边缘与给定ID的控件左边缘对齐;android:layout_toRightOf 将该控件的左边缘与给定ID的控件右边缘对齐;android:layout_alignBaseline 将该控件的baseline与给定ID的baseline对齐;android:layout_alignTop 将该控件的顶部边缘与给定ID的顶部边缘对齐;android:.. 阅读全文
摘要:
public class Test { public static void main(String[] args) { System.out.println("bit of JVM is "+System.getProperty("sun.arch.data.model")); }} 阅读全文
摘要:
服务器端代码:import java.io.*;import java.net.*;/** * Created with IntelliJ IDEA. * User: HYY * Date: 13-10-30 * Time: 下午2:15 * To change this template use File | Settings | File Templates. */public class Server { public static void main(String[] args) { ServerSocket serverSocket; Buffere... 阅读全文
摘要:
import java.io.*;import java.net.ServerSocket;import java.net.Socket;import java.util.Scanner;/** * User: HYY * Date: 13-10-29 * Time: 下午9:57 * To change this template use File | Settings | File Templates. */public class Server { public static final int SERVER_PORK = 10000; public static void ... 阅读全文
摘要:
import java.util.ArrayList;import java.util.List;/** * Created with IntelliJ IDEA. * User: HYY * Date: 13-10-28 * Time: 下午1:34 * To change this template use File | Settings | File Templates. *//** * 这里使用接口是因为各个观察者可能有各自的独特的方法和属性,因此将其抽象成方法 */interface Observer { void update();}interface Subject { ... 阅读全文
摘要:
这里给出一个顾客购买咖啡的例子。其中咖啡可以加冰(2元),加巧克力(4元)。下面是面向对象中装饰模式的解决方案。/** * Created with IntelliJ IDEA. * User: HYY * Date: 13-10-27 * Time: 下午10:49 * To change this template use File | Settings | File Templates. */interface Product { public double money();}class Coffee implements Product{ @Override publ... 阅读全文
摘要:
首先要安装phpmailer开源项目。将class.phpmailer.php转移到php文件夹下,编写代码:IsSMTP(); // 使用SMTP方式发送$mail->Host = "smtp.qq.com"; // 您的企业邮局域名$mail->SMTPAuth = true; // 启用SMTP验证功能$mail->Username = "645564675@qq.com"; // 邮局用户名(请填写完整的email地址)$mail->Password = "**********"; // 邮局密码$ma 阅读全文
摘要:
smarty高级部分包括缓存机制和配置文件的调用下面是代码实现:文件一,配置文件:#全局变量title="网站主页"content="一个网站的主体部分"#在news中[news]title="新闻页面"content="新闻内容"#在forum中[news]title="论坛页面"content="论坛内容"文件二,php文件: template_dir = "./templates"; //模板存放目录 $smarty -> compile_di 阅读全文
摘要:
insert用于模板中。用法:{insert name="method_name"}此时会寻找php文件中方法名为:insert_method_name的函数,将其返回值作为insert语句的值。例子: template_dir = "./templates"; //模板存放目录 $smarty -> compile_dir = "./templates_c"; //编译目录 $smarty -> cache_dir = "./cache"; //缓存目录 $smarty -> config_di 阅读全文
摘要:
require("Smarty.class.php"); $smarty = new Smarty(); $smarty -> template_dir = "./templates"; //模板存放目录 $smarty -> compile_dir = "./templates_c"; //编译目录 $smarty -> cache_dir = "./cache"; //缓存目录 $smarty -> config_dir = "./configs"; //缓存目录 阅读全文