百度英文自我介绍

人气:415 ℃/2023-03-01 14:35:56

百度英文自我介绍如何写呢?我们一起来看一看:

百度英文自我介绍写作方法:1、首先可以写自己的基本情况,包括姓名、性格特点、爱好等;2、接着可以写教育背景,包括毕业院校以及所学专业;3、其次可以写自己有信心能胜任百度公司职员的原因;4、最后结尾部分写自己期望成为百度公司的一员,并表示感谢。

百度英文自我介绍篇1

My name is xxx. I am from __xxx_ . There are _xxxx_ people in my family. My father works in a computer company. He is a computer engineer. My mother works in a international trade company. She is also a busy woman. I have a older sister and a younger brother. My sister is a junior in National Taiwan University. She majors in English. My brother is an elementary school student. He is 8 years old.

Because of my father, I love surfing the Internet very much. I play the on-line game for about 2 hours every day. I wish I could be a computer program designer in the future. And that is why I am applying for the electronics program in your school.

百度英文自我介绍篇2

Good morning, everyone! It is really my honor to have this opportunity for an interview. I hope I can make a good performance today. I'm confident that I can succeed. Now I will introduce myself briefly. I am 26 years old, born in Shandong province. I graduated from Qingdao University. My major is electronics. And I got my bachelor degree after my graduation in the year of 2003. I spent most of my time on study, and I’ve passed CET-6 during my university. And I’ve acquired basic knowledge of my major. It is my long cherished dream to be an engineer and I am eager to get an opportunity to fully play my ability.

In July 2003, I began working for a small private company as a technical support engineer in Qingdao city. Because there was no more chance for me to give full play to my talent, so I decided to change my job. And in August 2004, I left for Beijing and worked for a foreign enterprise as an automation software test engineer.

Because I want to change my working environment, I'd like to find a job which is more challenging. Moreover,Motorola is a global company, so I feel I can gain a lot from working in this kind of company. That is the reason why I come here to compete for this position. I think I'm a good team player and a person of great honesty to others. Also,I am able to work under great pressure. I am confident that I am qualified for the post of engineer in your company.

That is all. Thank you for giving me the chance.

百度英文自我介绍篇3

Good monring. It's a pleasure for me to be here in front of you to present myself. My name is Leo, and I am a candidate for the position of Overseas Sales Representative.

My background and work experience are tailor-made for this position. I studied marketing as an undergrad here in Taiwan, and in 1985, I received my MBA from the University of Texas School of Business. For five years now, I have utilized my skills and knowledge as the Assistant Director of Exports for magic kitchen Supplies.

Action Appliances is a forward-looking company. I am aware that you are expanding into new markets, particularly in the U.S. Thus you are going to need aggressive, take-charge sales representatives. At magic Kitchen, during my five year there, we expanded our U.S market share by 25%. This is just one example of my ability to go out there and sell products.

A position with your company would be both a learning experience and a great opportunity. I look forward to becoming part of the Action team. Thank you.

以上就是小编今天的分享,希望可以帮助到大家。

百度英文朗读

利用百度语音接口我为女儿写个英语阅读器原来这么简单

今日本来想接昨天的话题,继续说黑客控制手机的事,听到女儿说,英语听力变差了,好吧,今天写个英语朗读器。英语只是出师有名,其实汉语也行,我估计其它语言也行,只不过我不会,没有测试。

以上是效果图。

说说原理吧。要播放mp3要有什么?第一,要有播放器吧,第二,要有mp3文件吧。

播放器可以调用媒体播放器。

mp3文件恰好百度有个接口:http://tts.baidu.com/text2audio?lan=zh&ie=UTF-8&spd=4&per=5&pit=5&text=" t3

其中t3就是我们要朗读的字符串。

好吧,开始。

这是启动页。

package com.hx.dzcf;

import android.app.*;

import android.content.*;

import android.os.*;

import android.view.*;

import android.widget.*;

import android.widget.AdapterView.*;

import com.hx.tool.*;

import org.json.*;

import android.net.*;

public class Mainactivity extends Activity

{ public ad ad1=null; public JSONArray data=null; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); getData(); ListView l=(ListView) findViewById(R.id.mainListView1); ad1=new ad(this,data); l.setAdapter(ad1); registerForContextMenu(l); ad1.notifyDataSetChanged(); l.setOnItemClickListener(new OnItemClickListener(){ @Override public void onItemClick(AdapterView<?> parent, View view, int position, long id) { try { JSONObject js=(JSONObject)data.get(position); String s=js.getString("t3"); Intent it=new Intent(MainActivity.this,A1.class); it.putExtra("t33",s); startActivity(it); } catch (JSONException e) {} //App.ts(t3); } }); } public void o1(View v){ int id=v.getId(); switch(id){ case R.id.mainTextView1: startActivity(new Intent(MainActivity.this,A3.class)); break; } } public void getData(){ JSONObject j1=new JSONObject(); JSONObject j2=new JSONObject(); try { j2.put("data", j1); j2.put("sql", "t44=\"KM\""); j2.put("isTS","no"); j2.put("tableName","KM"); j2.put("method","read"); j2.put("dbName",Dir.getdbdir() "/my.db"); j2=Db.dbq(j2); data=j2.getJSONArray("arr"); } catch (JSONException e) {} } public class ad extends BaseAdapter { private LayoutInflater mInflater; private JSONArray items; public ad(Context context, JSONArray itemsIn) { mInflater = LayoutInflater.from(context); items = itemsIn; } public View getView(int position, View convertView, ViewGroup parent) { ViewHolder holder; if (convertView == null) { convertView = mInflater.inflate(R.layout.a11, null); holder = new ViewHolder(); holder.text = (TextView) convertView.findViewById(R.id.a11TextView1); convertView.setTag(holder); } else { holder = (ViewHolder) convertView.getTag(); } try { JSONObject j=(JSONObject)items.get(position); holder.text.setText(j.getString("t3")); } catch (JSONException e) {} return convertView; } private class ViewHolder { TextView text; ImageView icon; } public long getItemId(int position) { return position; } public Object getItem(int position) { int p=0; try { p=items.get(position); } catch (JSONException e) {} return p; } public int getCount() { return items.length(); } }

}

启动页布局。

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <LinearLayout android:orientation="horizontal" android:layout_width="match_parent" android:layout_height="wrap_content"> <TextView android:text="科目添加" android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@ id/mainTextView1" android:onClick="o1" android:padding="10dp" android:layout_weight="1.0" android:gravity="center"/> </LinearLayout> <ListView android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@ id/mainListView1"/>

</LinearLayout>

列表页面如下。

package com.hx.dzcf;

import android.app.*;

import android.content.*;

import android.os.*;

import android.view.*;

import android.view.ContextMenu.*;

import android.widget.*;

import android.widget.AdapterView.*;

import com.hx.tool.*;

import java.io.*;

import org.json.*;

/*

列表

*/

public class A1 extends Activity

{ public JSONArray data=null; public ad ad1=null; private static final int MENU_DELETE = Menu.FIRST; private static final int MENU_RENAME = Menu.FIRST 1; private static final int MENU_PLAY = Menu.FIRST 2; public String t33=""; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.a1); Intent it=getIntent(); t33=it.getStringExtra("t33"); getData(); ListView l=(ListView) findViewById(R.id.a1ListView1); ad1=new ad(this,data); l.setAdapter(ad1); registerForContextMenu(l); ad1.notifyDataSetChanged(); l.setOnItemClickListener(new OnItemClickListener(){ @Override public void onItemClick(AdapterView<?> parent, View view, int position, long id) { Mp3p.baiDuPlay(data,position-1); //App.ts(t3); } }); //App.ts(data.toString()); } @Override public void onCreateContextMenu(ContextMenu menu, View v, ContextMenuInfo menuInfo) { super.onCreateContextMenu(menu, v, menuInfo); AdapterView.AdapterContextMenuInfo info = null; try { info = (AdapterView.AdapterContextMenuInfo) menuInfo; } catch (ClassCastException e) { return; } menu.setHeaderTitle("操作"); menu.add(0, MENU_DELETE, 1, "删除"); //menu.add(0, MENU_RENAME, 2, "命名"); //menu.add(0, MENU_PLAY, 3, "播放"); } /* * */ @Override public boolean onContextItemSelected(MenuItem item) { AdapterContextMenuInfo info = (AdapterContextMenuInfo) item .getMenuInfo(); int p=info.position; switch (item.getItemId()) { case MENU_DELETE: del(p); show(); return true; default: return super.onContextItemSelected(item); } } private void show(){ getData(); ad1.notifyDataSetChanged(); } public void del(int p){ JSONObject j1=new JSONObject(); JSONObject j2=new JSONObject(); try { JSONObject jo=(JSONObject)data.get(p); String s=jo.getString("t3"); j2.put("data", j1); j2.put("sql", "t3=\"" s "\""); j2.put("isTS","yes"); j2.put("tableName","SJ"); j2.put("method","del"); j2.put("dbName",Dir.getdbdir() "/my.db"); j2=Db.dbq(j2); } catch (JSONException e) { App.getErrStr(e); } } public void o1(View v){ int id=v.getId(); switch(id){ case R.id.a1TextView1: Intent it2=new Intent(A1.this,A4.class); it2.putExtra("t33",t33); startActivity(it2); finish(); break; case R.id.a1TextView2: Mp3p.stop(); break; } } public void getData(){ JSONObject j1=new JSONObject(); JSONObject j2=new JSONObject(); try { j2.put("data", j1); j2.put("sql", "t2=\"" t33 "\""); j2.put("isTS","no"); j2.put("tableName","SJ"); j2.put("method","read"); j2.put("dbName",Dir.getdbdir() "/my.db"); j2=Db.dbq(j2); data=j2.getJSONArray("arr"); } catch (JSONException e) {} } public class ad extends BaseAdapter { private LayoutInflater mInflater; private JSONArray items; public ad(Context context, JSONArray itemsIn) { mInflater = LayoutInflater.from(context); items = itemsIn; } public View getView(int position, View convertView, ViewGroup parent) { ViewHolder holder; if (convertView == null) { convertView = mInflater.inflate(R.layout.a11, null); holder = new ViewHolder(); holder.text = (TextView) convertView.findViewById(R.id.a11TextView1); convertView.setTag(holder); } else { holder = (ViewHolder) convertView.getTag(); } try { JSONObject j=(JSONObject)items.get(position); holder.text.setText(j.getString("t3")); } catch (JSONException e) {} return convertView; } private class ViewHolder { TextView text; ImageView icon; } public long getItemId(int position) { return position; } public Object getItem(int position) { int p=0; try { p=items.get(position); } catch (JSONException e) {} return p; } public int getCount() { return items.length(); } }

}

列表布局

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="fill_parent" android:orientation="vertical"> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:orientation="horizontal"> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:text="添加数据" android:gravity="center" android:padding="10dp" android:id="@ id/a1TextView1" android:onClick="o1" android:layout_weight="1.0"/> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:text="停止" android:gravity="center" android:padding="10dp" android:id="@ id/a1TextView2" android:onClick="o1" android:layout_weight="1.0"/> </LinearLayout> <ListView android:layout_width="wrap_content" android:layout_height="wrap_content" android:id="@ id/a1ListView1"/>

</LinearLayout>

添加科目程序

package com.hx.dzcf;

import android.app.*;

import android.content.*;

import android.os.*;

import android.view.*;

import android.widget.*;

import com.hx.tool.*;

import org.json.*;

public class A3 extends Activity

{ @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.a4); } public void o1(View v){ int id=v.getId(); switch(id){ case R.id.A4Button1: JSONObject j1=new JSONObject(); JSONObject j2=new JSONObject(); //EditText e1=(EditText)findViewById(R.id.A4EditText1); //EditText e2=(EditText)findViewById(R.id.A4EditText2); EditText e3=(EditText)findViewById(R.id.A4EditText3); try { //j1.put("t1", e1.getText().toString()); //j1.put("t2", e2.getText().toString()); j1.put("t3", e3.getText().toString()); j2.put("data",j1); j2.put("sql",""); j2.put("isTS","yes"); j2.put("tableName","KM"); j2.put("method","tj"); j2.put("dbName",Dir.getdbdir() "/my.db"); j1=Db.dbq(j2);

e3.setText(""); } catch (JSONException e) { App.getErrStr(e); } break; case R.id.a4Button2: startActivity(new Intent(A3.this,MainActivity.class)); finish(); break; } }

}

添加科目和内容共用布局

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical"> <EditText android:layout_width="match_parent" android:ems="10" android:layout_height="wrap_content" android:id="@ id/A4EditText3" android:hint="内容"/> <Button android:layout_width="match_parent" android:layout_height="wrap_content" android:text="保存" android:id="@ id/A4Button1" android:onClick="o1"/> <Button android:layout_width="match_parent" android:layout_height="wrap_content" android:text="返回" android:id="@ id/a4Button2" android:onClick="o1"/>

</LinearLayout>

适配器Item的布局

<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_height="fill_parent" android:orientation="vertical"> <TextView android:layout_width="match_parent" android:layout_height="wrap_content" android:text="Text" android:id="@ id/a11TextView1" android:padding="10dp" android:textSize="15sp"/>

</LinearLayout>

播放器主程序

package com.hx.tool;

import android.media.*;

import com.hx.dzcf.*;

import java.io.*;

import org.json.*;

public class Mp3p

{ public static int p1=-1; public static MediaPlayer mp=null; public static int isPlay=0; public static void play(String src,final int p,final JSONArray data){ mp = new MediaPlayer(); try { mp.setDataSource(src); mp.prepare(); mp.start(); mp.setOnCompletionListener(new MediaPlayer.OnCompletionListener() { public void onCompletion(MediaPlayer mp) { int p1=p; isPlay=0; baiDuPlay(data,p1); } }); } catch (IllegalArgumentException e) { App.getErrStr(e); } catch (SecurityException e) { App.getErrStr(e); } catch (IllegalStateException e) { App.getErrStr(e); } catch (IOException e) { App.getErrStr(e); } } public static void baiDuPlay(final JSONArray data,final int p){ new Thread(new Runnable(){ @Override public void run(){ try { if(isPlay==0){ isPlay=1; if(p1<0){ p1=p; } p1 ; if(p1>=data.length()){ p1=0; } JSONObject js=(JSONObject)data.get(p1); String t3=js.getString("t3"); if(t3.length()<10){ t3="读书郎,一,二,三,开始。" t3; } String src="http://tts.baidu.com/text2audio?lan=zh&ie=UTF-8&spd=4&per=5&pit=5&text=" t3; File1.writeFile(src); play(src,p,data); } } catch (JSONException e) {} } }).start(); } public static void stop(){ mp.stop(); isPlay=0; }

}

权限我全部写上了

<?xml version="1.0" encoding="utf-8"?>

<manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.hx.dzcf" > <uses-permission android:name="android.permission.READ_CALL_LOG" /> <!--允许使用PowerManager的 WakeLocks保持进程在休眠时从屏幕消失 --> <uses-permission android:name="android.permission.DISABLE_KEYGUARD"/> <!-- 允许一个程序接收到ACTION_BOOT_COMPLETED广播在系统完成启动 --> <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> <!-- 改变WiFi多播状态 --> <uses-permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE" /> <!-- 允许程序读取底层系统日志文件 --> <uses-permission android:name="android.permission.READ_LOGS" /> <uses-permission android:name="android.permission.ACCESS_SUPERUSER" /> <uses-permission android:name="android.permission.BIND_ACCESSIBILITY_SERVICE"/> <uses-permission android:name="android.permission.RECEIVE_USER_PRESENT" /> <uses-permission android:name="android.permission.INTERNET" /> <uses-permission android:name="android.permission.WAKE_LOCK" /> <uses-permission android:name="android.permission.READ_PHONE_STATE" /> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> <uses-permission android:name="android.permission.VIBRATE" /> <uses-permission android:name="android.permission.MOUNT_UNMOUNT_FILESYSTEMS" /> <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" /> <uses-permission android:name="android.permission.WRITE_SETTINGS" /> <!-- since 1.6.0 --> <!-- Optional. Required for location feature --> <uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" /> <uses-permission android:name="android.permission.ACCESS_COARSE_UPDATES" /> <uses-permission android:name="android.permission.ACCESS_WIFI_STATE" /> <uses-permission android:name="android.permission.CHANGE_WIFI_STATE" /> <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> <uses-permission android:name="android.permission.ACCESS_LOCATION_EXTRA_COMMANDS" /> <uses-permission android:name="android.permission.CHANGE_NETWORK_STATE" /> <uses-permission android:name="android.permission.GET_TASKS" /> <uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" /> <uses-permission android:name="android.permission.CHANGE_CONFIGURATION" /> <uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" /> <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" /> <uses-permission android:name="android.permission.READ_OWNER_DATA"/> <uses-permission android:name="android.permission.RECORD_AUDIO" /> <uses-permission android:name="android.permission.CAMERA" /> <uses-feature android:name="android.hardware.camera" /> <uses-feature android:name="android.hardware.camera.autofocus" /> <!-- 关闭应用程序的权限 --> <uses-permission android:name="android.permission.RESTART_PACKAGES" /> <application android:name="com.hx.dzcf.App" android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@android:style/Theme.NoTitleBar" > <activity android:name="com.hx.dzcf.MainActivity" android:label="@string/app_name" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity android:name="com.hx.dzcf.A1"></activity> <activity android:name="com.hx.dzcf.A2"></activity> <activity android:name="com.hx.dzcf.A3"></activity> <activity android:name="com.hx.dzcf.A4"></activity> <activity android:name="com.hx.dzcf.A5"></activity> <activity android:name="com.hx.dzcf.A6"></activity> </application>

</manifest>

太长了。好了,基本这是这样,还有一个是报错处理的,就不放上去了。如果需要源码,请留言。

推荐

首页/电脑版/网名
© 2025 NiBaKu.Com All Rights Reserved.