要搬去 Logdown 歡迎大家有問題可以Email
Email: quietmes@gmail.com
Facebook: doublejiun
Github: jiunjiun
mkdir libraries cp -r ~/Desktop/JakeWharton-ActionBarSherlock-071a61c/actionbarsherlock libraries/
include ':libraries:actionbarsherlock'
dependencies { compile project(':libraries:actionbarsherlock') }
buildscript { repositories { mavenCentral() } dependencies { classpath 'com.android.tools.build:gradle:0.4' } } apply plugin: 'android-library' dependencies { compile files('libs/android-support-v4.jar') compile files('libs/android-support-v13.jar') } android { compileSdkVersion 17 buildToolsVersion "17" defaultConfig { minSdkVersion 7 targetSdkVersion 16 } sourceSets { main { manifest.srcFile 'AndroidManifest.xml' java.srcDirs = ['src'] resources.srcDirs = ['src'] aidl.srcDirs = ['src'] renderscript.srcDirs = ['src'] res.srcDirs = ['res'] assets.srcDirs = ['assets'] } instrumentTest.setRoot('tests') } }
./gradlew build
./gradlew.bat build
client.print("GET /");要設在client起始接著GET /斜線後面接你的目標網址
client.print("GET /save.php?a=123&b=456");
#include <Ethernet.h> | |
#include <SPI.h> | |
byte mac[] = {0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED}; // 乙太網路 | |
IPAddress ip(192, 168, 0, 30); // local IP | |
IPAddress remote(192, 168, 0, 130); // remote IP | |
EthernetServer Listen(80); // server | |
EthernetClient client; // client | |
int time = 0; | |
String Request; | |
void setup() { | |
Ethernet.begin(mac, ip); | |
Listen.begin(); | |
Serial.print("server is at "); | |
Serial.println(Ethernet.localIP()); | |
} | |
void loop() { | |
EthernetSend(); | |
EthernetListen(); | |
} | |
void EthernetSend() { | |
if(time == 5) { | |
Deliver(); | |
time = 0; | |
} | |
time++; | |
} | |
void Deliver() { | |
Serial.println("connecting..."); | |
if (client.connect(remote, 80)) { | |
Serial.println("connected"); | |
client.print("GET /"); // | |
client.print("/"); | |
client.println(" HTTP/1.0"); | |
client.println(); | |
client.stop(); | |
client.flush(); | |
Serial.println("send!!"); | |
} else { | |
Serial.println("connection failed"); | |
} | |
} | |
void EthernetListen() { | |
// Listen for incoming clients | |
EthernetClient client = Listen.available(); | |
if (client) { | |
Serial.println("new client"); | |
// an http request ends with a blank line | |
boolean currentLineIsBlank = true; | |
while (client.connected()) { | |
if (client.available()) { | |
char c = client.read(); | |
Request += c; | |
if (c == '\n' && currentLineIsBlank) { | |
Control(Request); | |
Serial.println(Request); | |
Request = ""; | |
break; | |
} | |
if (c == '\n') { | |
// you're starting a new line | |
currentLineIsBlank = true; | |
} else if (c != '\r') { | |
// you've gotten a character on the current line | |
currentLineIsBlank = false; | |
} | |
} | |
} | |
client.stop(); | |
Serial.println("client disonnected"); | |
} | |
} | |
void Control(String Request) { | |
if(Request.indexOf("/do_something1") > -1) { | |
//do something 1 .... | |
} else if(Request.indexOf("/do_something2") > -1) { | |
//do something 2 .... | |
} | |
} |
brew tap djl/homebrew-apache2 brew install djl/apache2/apache24
vi /usr/local/Cellar/apache24/2.4.4/conf/httpd.conf增加下面
LoadModule php5_module /usr/local/opt/php54/libexec/apache2/libphp5.so AddType application/x-httpd-php .php
brew tap homebrew/dupes brew tap josegonzalez/homebrew-php brew options php54 brew install php54 --homebrew-apxs
brew install mysql